summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-07-16 14:50:44 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-07-16 14:50:44 +0000
commit0d59dad7701e0ec7b4fb9689b9f6b7dc5f7b23e3 (patch)
tree17f2b73fe2185938e21be5bcfdc62df2889ae6e7 /doc/src
parent81fd7532a973fd667ac3e104464884a6ce4b47e8 (diff)
Automatic dependency tracking
The .DEFAULT rule in backend/Makefile is harmful -- removed. Replace `::' rules by `:'.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/Makefile10
-rw-r--r--doc/src/sgml/Makefile10
2 files changed, 10 insertions, 10 deletions
diff --git a/doc/src/Makefile b/doc/src/Makefile
index 551d8b2f6f3..38471a1193d 100644
--- a/doc/src/Makefile
+++ b/doc/src/Makefile
@@ -23,19 +23,19 @@ TARGETS= $(SRC:%=%.tar.gz)
.PRECIOUS:
.PHONY: install all sources clean distclean
-install::
+install:
$(MAKE) all
(mv -f *.gz ..)
-clean::
+clean:
$(MAKE) -C sgml clean
-distclean::
+distclean:
$(MAKE) -C sgml distclean
-all:: $(TARGETS)
+all: $(TARGETS)
-sources::
+sources:
$(MAKE) sources.tar.gz
sources.tar:
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile
index bb43863c155..db71acb2956 100644
--- a/doc/src/sgml/Makefile
+++ b/doc/src/sgml/Makefile
@@ -8,7 +8,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.15 2000/06/18 21:24:51 petere Exp $
+# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.16 2000/07/16 14:50:38 petere Exp $
#
#----------------------------------------------------------------------------
@@ -121,9 +121,9 @@ SQLTARGETS= $(XSQLTARGETS:-ref.l=.l)
.PRECIOUS: postgres.tex postgres.dvi
.PHONY: install all clean distclean
-install::
+install:
-all::
+all:
man:
$(MAKE) man1 manl
@@ -143,10 +143,10 @@ manl: $(SQLTARGETS) manpage.refs
if [ ! -d manl ]; then mkdir manl; fi
cp *.l manl/
-clean::
+clean:
(rm -rf HTML.manifest *.html *.htm *.1 *.l man1 manl manpage*)
-distclean::
+distclean:
$(MAKE) clean
#