From aee29f6dd8b5ea5a150d37108a523eb235a6ccdc Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 5 Aug 2021 17:57:29 -0400 Subject: [PATCH] Makefile: delete 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. --- Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Makefile b/Makefile index f5d7b78..054abc3 100644 --- a/Makefile +++ b/Makefile @@ -17,8 +17,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: @@ -58,8 +56,5 @@ release: program htmlpage md5sum $${rel}.tgz > $${rel}.tgz.md5 ; \ chmod 644 $${rel}.tgz $${rel}.tgz.md5 -program: - $(toolsdir)/build_from_modules $(program) >| $(program); - 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; -- 2.43.2