From 7af9afb54119d9afd23945f5ef92915454aeba2e Mon Sep 17 00:00:00 2001 From: Nate Straz Date: Tue, 8 Jul 2008 20:38:13 +0000 Subject: Add man pages to the build. --- Makefile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ee94fde..cde5b0b 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,11 @@ install: all install -D btimed $(INSTROOT)/usr/sbin/btimed install -D btimec $(INSTROOT)/usr/bin/btimec install -D btimed.xinetd $(INSTROOT)/etc/xinetd.d/btimed + install -D qarsh.1 $(INSTROOT)/usr/share/man/man1/qarsh.1 + install -D qacp.1 $(INSTROOT)/usr/share/man/man1/qacp.1 + install -D btimec.1 $(INSTROOT)/usr/share/man/man1/btimec.1 + install -D qarshd.8 $(INSTROOT)/usr/share/man/man8/qarshd.8 + install -D btimed.8 $(INSTROOT)/usr/share/man/man8/btimed.8 clean: $(RM) $(TARGETS) @@ -34,9 +39,15 @@ ifdef DIST RPMDEFS := -D "dist $(DIST)" endif -qarsh-$(VERSION).tar.bz2: qarsh.spec +tarfiles := qarsh.spec Makefile +tarfiles += $(wildcard *.c *.h) +tarfiles += qarsh.1 qacp.1 btimec.1 +tarfiles += qarshd.8 btimed.8 +tarfiles += *.xinetd + +qarsh-$(VERSION).tar.bz2: $(tarfiles) -rm $@ - tar cjf $@ . + tar cjf $@ $^ tarball: qarsh-$(VERSION).tar.bz2 -- cgit