diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2000-10-08 13:24:09 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2000-10-08 13:24:09 +0000 |
| commit | 23d7c6973f1315b2869efcff26270badccf26a7b (patch) | |
| tree | bb34783f147489c0d27ec6ca4f1aabb25ed54382 /doc/src/Makefile | |
| parent | e6ef738034ed1b40fc78f1e1e72edf5eb06c4c57 (diff) | |
Split out Developer's from Programmer's guide.
Diffstat (limited to 'doc/src/Makefile')
| -rw-r--r-- | doc/src/Makefile | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/doc/src/Makefile b/doc/src/Makefile index df6f9d953f6..f4289a5fa30 100644 --- a/doc/src/Makefile +++ b/doc/src/Makefile @@ -1,5 +1,5 @@ # Postgres documentation makefile -# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.13 2000/09/12 03:47:36 thomas Exp $ +# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.14 2000/10/08 13:24:08 petere Exp $ subdir = doc/src top_builddir = ../.. @@ -10,7 +10,7 @@ ZIP= gzip ZIPSUFFIX= gz TAREXCLUDE= --exclude=Makefile --exclude='*.sgml' --exclude=ref -SRC= admin postgres programmer tutorial user +SRC= admin postgres programmer tutorial user developer TARGETS= $(SRC:%=%.tar.$(ZIPSUFFIX)) @@ -33,37 +33,37 @@ sources: $(MAKE) sources.tar.$(ZIPSUFFIX) sources.tar: - ($(TAR) -cf $@ sgml graphics) + $(TAR) -cf $@ sgml graphics admin.tar: $(MAKE) -C sgml clean $(MAKE) -C sgml admin.html - (cd sgml; $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -C ../graphics layout.gif) + cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -installation.tar: +developer.tar: $(MAKE) -C sgml clean - $(MAKE) -C sgml installation.html - (cd sgml; $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm) - -postgres.tar: - $(MAKE) -C sgml clean - $(MAKE) -C sgml postgres.html - (cd sgml; $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -C ../graphics catalogs.gif clientserver.gif connections.gif layout.gif) + $(MAKE) -C sgml developer.html + cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm programmer.tar: $(MAKE) -C sgml clean $(MAKE) -C sgml programmer.html - (cd sgml; $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -C ../graphics catalogs.gif connections.gif) + cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -C ../graphics catalogs.gif connections.gif tutorial.tar: $(MAKE) -C sgml clean $(MAKE) -C sgml tutorial.html - (cd sgml; $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -C ../graphics clientserver.gif) + cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -C ../graphics clientserver.gif user.tar: $(MAKE) -C sgml clean $(MAKE) -C sgml user.html - (cd sgml; $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm) + cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm + +postgres.tar: + $(MAKE) -C sgml clean + $(MAKE) -C sgml postgres.html + cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -C ../graphics catalogs.gif clientserver.gif connections.gif man.tar: $(MAKE) -C sgml man @@ -75,4 +75,3 @@ man.tar: %.$(ZIPSUFFIX): % $(ZIP) -f $< - |
