From: Michael Orlitzky Date: Sun, 1 Aug 2021 12:54:27 +0000 (-0400) Subject: Makefile: report logreporters stuff. X-Git-Tag: 1.40.04~2 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=postfix-logwatch.git;a=commitdiff_plain;h=bbc24b2f77a0c65cf34d7bc463793679404d087b Makefile: report logreporters stuff. This Makefile used to assemble postfix-logwatch from the"logreporters" source tree, but now it's a standalone project with the logreporters modules copy/pasted in. Delete the corresponding targets from the Makefile. --- diff --git a/Makefile b/Makefile index 089a7e7..9b317ac 100644 --- a/Makefile +++ b/Makefile @@ -19,8 +19,6 @@ scriptdir_standalone = $(prefix_standalone)/bin confdir_standalone = $(prefix_standalone)/etc mandir_standalone = $(prefix_standalone)/man/man1 -toolsdir = ../tools - INSTALL = /usr/bin/install -c install: @@ -60,10 +58,7 @@ release: program htmlpage rel=$(program)-$$vers ; \ tar -czvf $${rel}.tgz --group=0 --owner=0 --mode=644 --transform=s",^,$${rel}/," $(src) ; \ md5sum $${rel}.tgz > $${rel}.tgz.md5 ; \ - chmod 644 $${rel}.tgz $${rel}.tgz.md5 - -program: - $(toolsdir)/build_from_modules $(program) >| $(program); + chmod 644 $${rel}.tgz $${rel}.tgz.md5 htmlpage: - groff -m mandoc -T ascii $(program).1 | $(toolsdir)/man2html -t 'Man page: $(program)(1)' >| $(program).1.html; + groff -m mandoc -T ascii $(program).1 | man2html -t 'Man page: $(program)(1)' >| $(program).1.html;