1998-03-01 03:16:16 -05:00
|
|
|
# Postgres documentation makefile
|
2002-07-28 11:19:59 -04:00
|
|
|
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.29 2002/07/28 15:19:59 petere Exp $
|
1998-03-01 03:16:16 -05:00
|
|
|
|
2000-08-31 12:12:35 -04:00
|
|
|
subdir = doc/src
|
|
|
|
|
top_builddir = ../..
|
2000-11-24 12:44:22 -05:00
|
|
|
include $(top_builddir)/src/Makefile.global
|
1998-03-01 03:16:16 -05:00
|
|
|
|
2000-09-11 23:47:36 -04:00
|
|
|
ZIPSUFFIX= gz
|
1998-03-01 03:16:16 -05:00
|
|
|
|
2001-09-18 08:08:27 -04:00
|
|
|
BOOKS = admin developer reference programmer tutorial user postgres
|
1998-03-01 03:16:16 -05:00
|
|
|
|
2001-09-18 08:08:27 -04:00
|
|
|
TARGETS= $(BOOKS:%=%.tar.$(ZIPSUFFIX))
|
1998-03-01 03:16:16 -05:00
|
|
|
|
1998-03-01 15:47:20 -05:00
|
|
|
.PRECIOUS:
|
|
|
|
|
.PHONY: install all sources clean distclean
|
1998-03-01 03:16:16 -05:00
|
|
|
|
2000-07-16 10:50:44 -04:00
|
|
|
install:
|
1998-03-01 03:16:16 -05:00
|
|
|
$(MAKE) all
|
2000-09-11 23:47:36 -04:00
|
|
|
(mv -f *.$(ZIPSUFFIX) ..)
|
1998-03-01 15:47:20 -05:00
|
|
|
|
2002-07-28 11:19:59 -04:00
|
|
|
clean distclean maintainer-clean:
|
|
|
|
|
$(MAKE) -C sgml $@
|
1998-03-01 03:16:16 -05:00
|
|
|
|
2000-07-16 10:50:44 -04:00
|
|
|
all: $(TARGETS)
|
1998-03-01 03:16:16 -05:00
|
|
|
|
2000-07-16 10:50:44 -04:00
|
|
|
sources:
|
2000-09-11 23:47:36 -04:00
|
|
|
$(MAKE) sources.tar.$(ZIPSUFFIX)
|
1998-03-01 03:16:16 -05:00
|
|
|
|
1998-05-09 18:32:03 -04:00
|
|
|
sources.tar:
|
2000-10-08 09:24:09 -04:00
|
|
|
$(TAR) -cf $@ sgml graphics
|
1998-05-09 18:32:03 -04:00
|
|
|
|
2001-11-25 17:17:27 -05:00
|
|
|
# Build twice to resolve index entries
|
2001-09-18 08:08:27 -04:00
|
|
|
$(addsuffix .tar, $(BOOKS)):
|
1998-03-01 03:16:16 -05:00
|
|
|
$(MAKE) -C sgml clean
|
2000-11-24 12:44:22 -05:00
|
|
|
$(MAKE) -C sgml $(basename $@).html
|
2001-09-18 08:08:27 -04:00
|
|
|
$(MAKE) -C sgml $(basename $@).html JADEFLAGS='-V html-manifest'
|
2001-09-30 15:18:29 -04:00
|
|
|
cd sgml && $(TAR) -cf ../$@ `cat HTML.manifest` `echo *.gif | grep -v '\*'` *.css
|
1998-03-01 03:16:16 -05:00
|
|
|
|
1999-07-06 13:13:50 -04:00
|
|
|
man.tar:
|
1999-08-08 11:10:21 -04:00
|
|
|
$(MAKE) -C sgml man
|
2001-09-30 15:09:57 -04:00
|
|
|
$(TAR) -cf $@ -C sgml man1 man$(sqlmansect_dummy)
|