mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
c70e606a4c
- LIKE <subtable> [ INCLUDING DEFAULTS | EXCLUDING DEFAULTS ] - Quick cleanup of analyze.c function prototypes. - New non-reserved keywords (INCLUDING, EXCLUDING, DEFAULTS), SQL 200X Opted not to extend for check constraints at this time. As per the definition that it's user defined columns, OIDs are NOT inherited. Doc and Source patches attached. -- Rod Taylor <rbt@rbt.ca>
59 lines
1.1 KiB
Makefile
59 lines
1.1 KiB
Makefile
# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.42 2003/06/25 03:40:17 momjian Exp $
|
|
|
|
subdir = contrib
|
|
top_builddir = ..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
WANTED_DIRS = \
|
|
array \
|
|
btree_gist \
|
|
chkpass \
|
|
cube \
|
|
dbase \
|
|
dblink \
|
|
dbmirror \
|
|
dbsize \
|
|
findoidjoins \
|
|
fulltextindex \
|
|
fuzzystrmatch \
|
|
intagg \
|
|
intarray \
|
|
isbn_issn \
|
|
lo \
|
|
ltree \
|
|
miscutil \
|
|
noupdate \
|
|
oid2name \
|
|
pg_autovacuum \
|
|
pg_dumplo \
|
|
pg_logger \
|
|
pgbench \
|
|
pgcrypto \
|
|
pgstattuple \
|
|
rserv \
|
|
rtree_gist \
|
|
seg \
|
|
spi \
|
|
string \
|
|
tablefunc \
|
|
tips \
|
|
tsearch \
|
|
userlock \
|
|
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)
|
|
# 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
|