]> gitweb.michael.orlitzky.com - postfix-logwatch.git/commitdiff
Makefile: report logreporters stuff.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 1 Aug 2021 12:54:27 +0000 (08:54 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 1 Aug 2021 12:54:27 +0000 (08:54 -0400)
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.

Makefile

index 089a7e7946fc49d68a55e8b6b69e562ff57f7faa..9b317acf6e5b561138c117c09fdf9af8ea9622d4 100644 (file)
--- 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;