postgresql/doc/src/Makefile

78 lines
1.7 KiB
Makefile
Raw Normal View History

1998-03-01 16:16:16 +08:00
# Postgres documentation makefile
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.14 2000/10/08 13:24:08 petere Exp $
1998-03-01 16:16:16 +08:00
subdir = doc/src
top_builddir = ../..
-include $(top_builddir)/src/Makefile.global
1998-03-01 16:16:16 +08:00
TAR= tar
ZIP= gzip
ZIPSUFFIX= gz
TAREXCLUDE= --exclude=Makefile --exclude='*.sgml' --exclude=ref
1998-03-01 16:16:16 +08:00
SRC= admin postgres programmer tutorial user developer
1998-03-01 16:16:16 +08:00
TARGETS= $(SRC:%=%.tar.$(ZIPSUFFIX))
1998-03-01 16:16:16 +08:00
.PRECIOUS:
.PHONY: install all sources clean distclean
1998-03-01 16:16:16 +08:00
install:
1998-03-01 16:16:16 +08:00
$(MAKE) all
(mv -f *.$(ZIPSUFFIX) ..)
clean:
$(MAKE) -C sgml clean
distclean:
$(MAKE) -C sgml distclean
1998-03-01 16:16:16 +08:00
all: $(TARGETS)
1998-03-01 16:16:16 +08:00
sources:
$(MAKE) sources.tar.$(ZIPSUFFIX)
1998-03-01 16:16:16 +08:00
sources.tar:
$(TAR) -cf $@ sgml graphics
admin.tar:
1998-03-01 16:16:16 +08:00
$(MAKE) -C sgml clean
$(MAKE) -C sgml admin.html
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm
developer.tar:
$(MAKE) -C sgml clean
$(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
1998-03-01 16:16:16 +08:00
tutorial.tar:
1998-03-01 16:16:16 +08:00
$(MAKE) -C sgml clean
$(MAKE) -C sgml tutorial.html
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -C ../graphics clientserver.gif
1998-03-01 16:16:16 +08:00
user.tar:
1998-03-01 16:16:16 +08:00
$(MAKE) -C sgml clean
$(MAKE) -C sgml user.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
1998-03-01 16:16:16 +08:00
man.tar:
$(MAKE) -C sgml man
$(TAR) -cf $@ -C sgml man1 manl
1998-03-01 16:16:16 +08:00
# Generic production rules
# Compressed file
%.$(ZIPSUFFIX): %
$(ZIP) -f $<