postgresql/contrib/Makefile

35 lines
630 B
Makefile
Raw Normal View History

# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.9 2000/10/31 13:11:28 petere Exp $
2000-06-15 20:55:34 +02:00
subdir = contrib
top_builddir = ..
include $(top_builddir)/src/Makefile.global
2000-06-15 20:55:34 +02:00
WANTED_DIRS = array \
earthdistance \
findoidjoins \
fulltextindex \
isbn_issn \
linux \
lo \
mSQL-interface \
mac \
2000-06-15 20:55:34 +02:00
miscutil \
noupdate \
pg_dumplo \
pgbench \
pgcrypto \
2000-06-15 20:55:34 +02:00
soundex \
spi \
string \
tips \
unixdate \
userlock \
vacuumlo
all install installdirs uninstall clean distclean maintainer-clean:
2000-06-15 20:55:34 +02:00
for dir in $(WANTED_DIRS); do \
if [ -e $$dir/Makefile ]; then \
$(MAKE) -C $$dir $@; \
2000-06-15 20:55:34 +02:00
fi; \
done