diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-07-16 14:50:44 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-07-16 14:50:44 +0000 |
commit | 0d59dad7701e0ec7b4fb9689b9f6b7dc5f7b23e3 (patch) | |
tree | 17f2b73fe2185938e21be5bcfdc62df2889ae6e7 /contrib/Makefile | |
parent | 81fd7532a973fd667ac3e104464884a6ce4b47e8 (diff) | |
download | postgresql-0d59dad7701e0ec7b4fb9689b9f6b7dc5f7b23e3.tar.gz |
Automatic dependency tracking
The .DEFAULT rule in backend/Makefile is harmful -- removed.
Replace `::' rules by `:'.
Diffstat (limited to 'contrib/Makefile')
-rw-r--r-- | contrib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/Makefile b/contrib/Makefile index bd7626ad88..411979e9eb 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -1,7 +1,7 @@ # # The PostgreSQL contrib tree Makefile # -# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.6 2000/07/09 13:12:57 petere Exp $ +# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.7 2000/07/16 14:50:29 petere Exp $ # subdir = contrib @@ -29,7 +29,7 @@ WANTED_DIRS = array \ vacuumlo # odbc -all .DEFAULT: +all install installdirs uninstall clean distclean maintainer-clean: for dir in $(WANTED_DIRS); do \ if [ -e $$dir/Makefile ]; then \ $(MAKE) -C $$dir $@ ; \ |