Remove previous gz files

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@17154 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2003-07-06 02:51:45 +00:00
parent 6ac6c789b1
commit bc24223b80
2 changed files with 18 additions and 1 deletions

View file

@ -131,7 +131,8 @@ after-install:: $(GNUSTEP_DOCUMENTATION)/Developer/Make/Manual
for file in $(MAN7_PAGES) __done; do \
if [ $$file != __done ]; then \
$(INSTALL_DATA) $$file $(GNUSTEP_DOCUMENTATION_MAN)/man7/$$file; \
which gzip && gzip -9 $(GNUSTEP_DOCUMENTATION_MAN)/man7/$$file; \
which gzip && rm -f $(GNUSTEP_DOCUMENTATION_MAN)/man7/$$file.gz \
&& gzip -9 $(GNUSTEP_DOCUMENTATION_MAN)/man7/$$file; \
fi; \
done;

View file

@ -30,6 +30,22 @@ particular operating system and CPU. These instructions come with the
GNUstep-HOWTO and are also located at the GNUstep web site at
@url{http://www.gnustep.org}.
Quick installation instructions:
@example
./configure
make
make install
@end example
To make and install the documentation:
@example
cd Documentation
make
make install
@end example
@node Configuration, Installation, Introduction, Top
@section Configuration