blob: 25ab93da08f5e3e76cf8c0b9364e35ab652c6ea1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Postgres documentation makefile
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.27 2001/11/23 17:56:13 momjian Exp $
subdir = doc/src
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
ZIPSUFFIX= gz
BOOKS = admin developer reference programmer tutorial user postgres
TARGETS= $(BOOKS:%=%.tar.$(ZIPSUFFIX))
.PRECIOUS:
.PHONY: install all sources clean distclean
install:
$(MAKE) all
(mv -f *.$(ZIPSUFFIX) ..)
clean:
$(MAKE) -C sgml clean
distclean:
$(MAKE) -C sgml distclean
all: $(TARGETS)
sources:
$(MAKE) sources.tar.$(ZIPSUFFIX)
sources.tar:
$(TAR) -cf $@ sgml graphics
$(addsuffix .tar, $(BOOKS)):
$(MAKE) -C sgml clean
# build index entries first
$(MAKE) -C sgml $(basename $@).html
$(MAKE) -C sgml $(basename $@).html JADEFLAGS='-V html-manifest'
cd sgml && $(TAR) -cf ../$@ `cat HTML.manifest` `echo *.gif | grep -v '\*'` *.css
man.tar:
$(MAKE) -C sgml man
$(TAR) -cf $@ -C sgml man1 man$(sqlmansect_dummy)
|