diff options
| author | Paul C. Buetow (mars.fritz.box) <paul@buetow.org> | 2014-07-04 22:07:07 +0200 |
|---|---|---|
| committer | Paul C. Buetow (mars.fritz.box) <paul@buetow.org> | 2014-07-04 22:07:07 +0200 |
| commit | b7ac4cf9fccc9f40fd5324c15c948cf2fcb9f368 (patch) | |
| tree | 29ef2a8ca5033881d948f72d60f3fe16df933037 /Makefile | |
| parent | 2e09b15a077fc4f5c8e4189336a534ec88728c13 (diff) | |
add default rc
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -14,11 +14,13 @@ install: test ! -d $(DESTDIR)/usr/bin && mkdir -p $(DESTDIR)/usr/bin || exit 0 test ! -d $(DESTDIR)/usr/share/$(NAME) && mkdir -p $(DESTDIR)/usr/share/$(NAME) || exit 0 cp ./bin/* $(DESTDIR)/usr/bin - #cp -r ./lib $(DESTDIR)/usr/share/$(NAME)/lib + test ! -d $(DESTDIR)/etc/default && mkdir -p $(DESTDIR)/etc/default || exit 0 + cp ./src/muttdelay.default.conf $(DESTDIR)/etc/default/muttdelay deinstall: test ! -z "$(DESTDIR)" && test -f $(DESTDIR)/usr/bin/$(NAME) && rm $(DESTDIR)/usr/bin/$(NAME) || exit 0 test ! -z "$(DESTDIR)/usr/share/$(NAME)" && -d $(DESTDIR)/usr/share/$(NAME) && rm -r $(DESTDIR)/usr/share/$(NAME) || exit 0 + test ! -z "$(DESTDIR)" && test -f $(DESTDIR)/etc/default/muttdelay && rm $(DESTDIR)/etc/default/muttdelay || exit 0 clean: rm bin/* |
