]> granicus.if.org Git - postgresql/blobdiff - contrib/Makefile
Avoid PQisBusy/PQconsumeInput busy loop in case of PQisBusy returning
[postgresql] / contrib / Makefile
index a1adaa048cf6d5abd84d6da2b3a0cd6dd7367669..79833ed311305aa593b970ba9176ac921cdfac3e 100644 (file)
@@ -1,33 +1,62 @@
-# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.8 2000/09/18 20:11:34 petere Exp $
+# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.39 2002/09/05 20:53:45 tgl Exp $
 
 subdir = contrib
 top_builddir = ..
 include $(top_builddir)/src/Makefile.global
 
-WANTED_DIRS =  array           \
+WANTED_DIRS = \
+               array           \
+               btree_gist      \
+               chkpass         \
+               cube            \
+               dbase           \
+               dblink          \
+               dbmirror        \
+               dbsize          \
                earthdistance   \
                findoidjoins    \
                fulltextindex   \
+               fuzzystrmatch   \
+               intagg          \
+               intarray        \
                isbn_issn       \
-               linux           \
                lo              \
-               mSQL-interface  \
-               mac             \
+               ltree           \
                miscutil        \
                noupdate        \
+               oid2name        \
                pg_dumplo       \
+               pg_logger       \
                pgbench         \
-               soundex         \
+               pgcrypto        \
+               pgstattuple     \
+               rserv           \
+               rtree_gist      \
+               seg             \
                spi             \
                string          \
+               tablefunc       \
                tips            \
-               unixdate        \
+               tsearch         \
                userlock        \
-               vacuumlo        
+               vacuumlo
 
-all install installdirs uninstall clean distclean maintainer-clean:
-       for dir in $(WANTED_DIRS); do \
-           if [ -e $$dir/Makefile ]; then \
-               $(MAKE) -C $$dir $@; \
-           fi; \
+ifeq ($(with_java),yes)
+WANTED_DIRS += retep
+endif
+
+# 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)
+#              start-scripts   \ (does not have a makefile)
+#              tools           \ (does not have a makefile)
+#              xml             \ (non-standard makefile)
+
+
+all install installdirs uninstall clean distclean maintainer-clean check installcheck:
+       @for dir in $(WANTED_DIRS); do \
+               $(MAKE) -C $$dir $@ || exit; \
        done