Make sure to generate an uncompressed hugehelp.c file for inclusion in

the distribution archive, as it isn't sure zlib is present everywhere. Those
who care much for compressed help should regenerate the file.
This commit is contained in:
Daniel Stenberg 2003-07-30 07:33:41 +00:00
parent 1c35cbcc07
commit 6809a906bb
1 changed files with 5 additions and 1 deletions

View File

@ -46,4 +46,8 @@ MKHELP=$(top_srcdir)/src/mkhelp.pl
# This generates the hugehelp.c file
hugehelp.c: $(README) $(MANPAGE) mkhelp.pl
rm -f hugehelp.c
$(NROFF) -man $(MANPAGE) | $(PERL) -s $(MKHELP) $(MKHELPOPT) $(README) > hugehelp.c
$(NROFF) -man $(MANPAGE) | $(PERL) $(MKHELP) $(MKHELPOPT) $(README) > hugehelp.c
# for distribution, generate an uncompressed help file!
dist-hook:
$(NROFF) -man $(MANPAGE) | $(PERL) $(MKHELP) $(README) > $(distdir)/hugehelp.c