summaryrefslogtreecommitdiff
path: root/contrib/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/Makefile')
-rw-r--r--contrib/Makefile26
1 files changed, 16 insertions, 10 deletions
diff --git a/contrib/Makefile b/contrib/Makefile
index 809d84f98a..8996c0abc2 100644
--- a/contrib/Makefile
+++ b/contrib/Makefile
@@ -1,4 +1,4 @@
-# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.26 2001/09/04 19:21:42 tgl Exp $
+# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.27 2001/09/06 10:49:29 petere Exp $
subdir = contrib
top_builddir = ..
@@ -18,8 +18,6 @@ WANTED_DIRS = \
intarray \
isbn_issn \
lo \
- mSQL-interface \
- mac \
miscutil \
noupdate \
oid2name \
@@ -28,7 +26,6 @@ WANTED_DIRS = \
pg_logger \
pg_resetxlog \
pgbench \
- pgcrypto \
rserv \
rtree_gist \
seg \
@@ -36,16 +33,25 @@ WANTED_DIRS = \
string \
tips \
userlock \
- vacuumlo
+ vacuumlo
+
+# Missing:
+# ipc_check \ (does not have a makefile)
+# mSQL-interface \ (requires msql installed)
+# mac \ (does not have a makefile)
+# mysql \ (does not have a makefile)
+# oracle \ (does not have a makefile)
+# pgcrypto \ (non-standard makefile)
+# start-scripts \ (does not have a makefile)
+# tools \ (does not have a makefile)
+# xml \ (non-standard makefile)
ifeq ($(with_java),yes)
WANTED_DIRS += retep
endif
-all install installdirs uninstall clean distclean maintainer-clean:
- for dir in $(WANTED_DIRS); do \
- if [ -f $$dir/Makefile ]; then \
- $(MAKE) -C $$dir $@; \
- fi; \
+all install installdirs uninstall clean distclean maintainer-clean check installcheck:
+ @for dir in $(WANTED_DIRS); do \
+ $(MAKE) -C $$dir $@ || exit; \
done