Skip to content
Snippets Groups Projects
Commit ec12e800 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

> Kinda looks like Ian broke the compile-in-source-dir case while

> making the compile-in-separate-dir case work.  Tut tut.

Yes.  My apologies.  This patch is one way to fix things.

Ian
parent 341cb700
No related branches found
No related tags found
No related merge requests found
# Postgres documentation makefile # Postgres documentation makefile
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.17 2001/03/25 08:32:24 petere Exp $ # $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.18 2001/03/27 16:34:14 momjian Exp $
subdir = doc/src subdir = doc/src
top_builddir = ../.. top_builddir = ../..
...@@ -43,17 +43,20 @@ admin.tar developer.tar reference.tar user.tar: ...@@ -43,17 +43,20 @@ admin.tar developer.tar reference.tar user.tar:
programmer.tar: programmer.tar:
$(MAKE) -C sgml clean $(MAKE) -C sgml clean
$(MAKE) -C sgml programmer.html $(MAKE) -C sgml programmer.html
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html -C `cd $(srcdir) && pwd`/graphics catalogs.gif connections.gif abssrcdir=`cd $(srcdir) && pwd`; \
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html -C $$abssrcdir/graphics catalogs.gif connections.gif
tutorial.tar: tutorial.tar:
$(MAKE) -C sgml clean $(MAKE) -C sgml clean
$(MAKE) -C sgml tutorial.html $(MAKE) -C sgml tutorial.html
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html -C `cd $(srcdir) && pwd`/graphics clientserver.gif abssrcdir=`cd $(srcdir) && pwd`; \
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html -C $$abssrcdir/graphics clientserver.gif
postgres.tar: postgres.tar:
$(MAKE) -C sgml clean $(MAKE) -C sgml clean
$(MAKE) -C sgml postgres.html $(MAKE) -C sgml postgres.html
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html -C `cd $(srcdir) && pwd`/graphics catalogs.gif clientserver.gif connections.gif abssrcdir=`cd $(srcdir) && pwd`; \
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html -C $$abssrcdir/graphics catalogs.gif clientserver.gif connections.gif
man.tar: man.tar:
$(MAKE) -C sgml man $(MAKE) -C sgml man
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment