mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
22 lines
582 B
Makefile
22 lines
582 B
Makefile
# Postgres documentation makefile
|
|
# $PostgreSQL: pgsql/doc/src/Makefile,v 1.32 2003/11/29 19:51:36 pgsql Exp $
|
|
|
|
subdir = doc/src
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
clean distclean maintainer-clean:
|
|
rm -f *.tar *.gz
|
|
$(MAKE) -C sgml $@
|
|
|
|
# Build twice to resolve index entries
|
|
postgres.tar:
|
|
$(MAKE) -C sgml clean
|
|
$(MAKE) -C sgml html
|
|
$(MAKE) -C sgml 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)
|