X-Git-Url: http://gitweb.michael.orlitzky.com/?p=postfix-logwatch.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=2d87025ae7c711ca2f4a87e8fc8de07ef7120a21;hp=e0a3d2f820c8721b02009c610a99fa140576a2b8;hb=14251ce4082b9ea7af171f5df7f7c3f55379b3a7;hpb=0a184a4076deb9e695305178b044ea2fe787050f diff --git a/Makefile b/Makefile index e0a3d2f..2d87025 100644 --- a/Makefile +++ b/Makefile @@ -26,26 +26,49 @@ install: @echo 'Run "make install-all" to install both' install-logwatch: - $(INSTALL) -d -m 0755 $(DESTDIR)$(scriptdir_logwatch) $(DESTDIR)$(confdir_logwatch) || exit 1; - $(INSTALL) -m 0644 $(program) $(DESTDIR)$(scriptdir_logwatch)/$(program_logwatch) || exit 1; - $(INSTALL) -m 0644 $(program).conf $(DESTDIR)$(confdir_logwatch)/$(program_logwatch).conf || exit 1; + $(INSTALL) -d -m 0755 \ + $(DESTDIR)$(scriptdir_logwatch) \ + $(DESTDIR)$(confdir_logwatch) + $(INSTALL) -m 0644 \ + $(program) \ + $(DESTDIR)$(scriptdir_logwatch)/$(program_logwatch) + $(INSTALL) -m 0644 \ + $(program).conf \ + $(DESTDIR)$(confdir_logwatch)/$(program_logwatch).conf # removes taint mode (-T) to run under logwatch - perl -e 'while (<>) { $$.==1 and s/\s+-T$$//; print "$$_";}' -i $(DESTDIR)$(scriptdir_logwatch)/$(program_logwatch) + perl -e 'while (<>) { $$.==1 and s/\s+-T$$//; print "$$_";}' \ + -i $(DESTDIR)$(scriptdir_logwatch)/$(program_logwatch) install-standalone: - $(INSTALL) -d -m 0755 $(DESTDIR)$(scriptdir_standalone) $(DESTDIR)$(confdir_standalone) || exit 1; - $(INSTALL) -m 0755 $(program) $(DESTDIR)$(scriptdir_standalone)/$(program) || exit 1; - $(INSTALL) -m 0644 $(program).conf $(DESTDIR)$(confdir_standalone)/$(program).conf || exit 1; - $(INSTALL) -m 0644 $(program).1 $(DESTDIR)$(mandir_standalone)/$(program).1 || exit 1; + $(INSTALL) -d -m 0755 \ + $(DESTDIR)$(scriptdir_standalone) \ + $(DESTDIR)$(confdir_standalone) \ + $(DESTDIR)$(mandir_standalone) + $(INSTALL) -m 0755 \ + $(program) \ + $(DESTDIR)$(scriptdir_standalone)/$(program) + $(INSTALL) -m 0644 \ + $(program).conf \ + $(DESTDIR)$(confdir_standalone)/$(program).conf + $(INSTALL) -m 0644 \ + $(program).1 \ + $(DESTDIR)$(mandir_standalone)/$(program).1 install-all: install-logwatch install-standalone uninstall-logwatch: - -rm $(DESTDIR)$(scriptdir_logwatch)/$(program_logwatch) $(DESTDIR)$(confdir_logwatch)/$(program_logwatch).conf + rm -f $(DESTDIR)$(scriptdir_logwatch)/$(program_logwatch) \ + $(DESTDIR)$(confdir_logwatch)/$(program_logwatch).conf + rm -rf $(DESTDIR)$(scriptdir_logwatch) \ + $(DESTDIR)$(confdir_logwatch) uninstall-standalone: - -rm $(DESTDIR)$(scriptdir_standalone)/$(program) $(DESTDIR)$(confdir_standalone)/$(program).conf \ - $(DESTDIR)$(mandir_standalone)/$(program).1 + rm -f $(DESTDIR)$(scriptdir_standalone)/$(program) \ + $(DESTDIR)$(confdir_standalone)/$(program).conf \ + $(DESTDIR)$(mandir_standalone)/$(program).1 + rm -rf $(DESTDIR)$(scriptdir_standalone) \ + $(DESTDIR)$(confdir_standalone) \ + $(DESTDIR)$(mandir_standalone) uninstall-all: uninstall-logwatch uninstall-standalone