diff options
author | Peter Eisentraut | 2007-02-09 17:04:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2007-02-09 17:04:00 +0000 |
commit | 6a6b770cc9c41e5457ebe2d4fdbd0d4fb9064cdb (patch) | |
tree | a79e66abafd57e7cc03cbd87f8f5c840f899029d | |
parent | be5fc7dee23b1c1c740f215d63584997d6245552 (diff) |
Add $PostgreSQL$ marker to contrib makefiles.
-rw-r--r-- | contrib/adminpack/Makefile | 2 | ||||
-rw-r--r-- | contrib/btree_gist/Makefile | 1 | ||||
-rw-r--r-- | contrib/hstore/Makefile | 4 | ||||
-rw-r--r-- | contrib/ltree/Makefile | 2 | ||||
-rw-r--r-- | contrib/pg_standby/Makefile | 1 | ||||
-rw-r--r-- | contrib/pg_trgm/Makefile | 5 | ||||
-rw-r--r-- | contrib/sslinfo/Makefile | 2 | ||||
-rw-r--r-- | contrib/tablefunc/Makefile | 2 | ||||
-rw-r--r-- | contrib/xml2/Makefile | 3 |
9 files changed, 14 insertions, 8 deletions
diff --git a/contrib/adminpack/Makefile b/contrib/adminpack/Makefile index ba864c1417..13a5de563c 100644 --- a/contrib/adminpack/Makefile +++ b/contrib/adminpack/Makefile @@ -1,3 +1,5 @@ +# $PostgreSQL$ + MODULE_big = adminpack PG_CPPFLAGS = -I$(libpq_srcdir) DATA_built = adminpack.sql diff --git a/contrib/btree_gist/Makefile b/contrib/btree_gist/Makefile index 57c6e1f1ef..7eac32eac1 100644 --- a/contrib/btree_gist/Makefile +++ b/contrib/btree_gist/Makefile @@ -1,3 +1,4 @@ +# $PostgreSQL$ MODULE_big = btree_gist diff --git a/contrib/hstore/Makefile b/contrib/hstore/Makefile index 7ac913ca89..e3d03fb60f 100644 --- a/contrib/hstore/Makefile +++ b/contrib/hstore/Makefile @@ -1,3 +1,5 @@ +# $PostgreSQL$ + subdir = contrib/hstore top_builddir = ../.. include $(top_builddir)/src/Makefile.global @@ -14,5 +16,3 @@ DOCS = README.hstore REGRESS = hstore include $(top_srcdir)/contrib/contrib-global.mk -# DO NOT DELETE - diff --git a/contrib/ltree/Makefile b/contrib/ltree/Makefile index 676dbe7ecd..2dc37eb01f 100644 --- a/contrib/ltree/Makefile +++ b/contrib/ltree/Makefile @@ -1,3 +1,5 @@ +# $PostgreSQL$ + PG_CPPFLAGS = -DLOWER_NODE MODULE_big = ltree OBJS = ltree_io.o ltree_op.o lquery_op.o _ltree_op.o crc32.o \ diff --git a/contrib/pg_standby/Makefile b/contrib/pg_standby/Makefile index 99abebc3a1..2684611955 100644 --- a/contrib/pg_standby/Makefile +++ b/contrib/pg_standby/Makefile @@ -1,3 +1,4 @@ +# $PostgreSQL$ PROGRAM = pg_standby OBJS = pg_standby.o diff --git a/contrib/pg_trgm/Makefile b/contrib/pg_trgm/Makefile index 36714409c3..6efc0dcee0 100644 --- a/contrib/pg_trgm/Makefile +++ b/contrib/pg_trgm/Makefile @@ -1,3 +1,4 @@ +# $PostgreSQL$ PG_CPPFLAGS = -I. @@ -19,7 +20,3 @@ top_builddir = ../.. include $(top_builddir)/src/Makefile.global include $(top_srcdir)/contrib/contrib-global.mk endif - - -# DO NOT DELETE - diff --git a/contrib/sslinfo/Makefile b/contrib/sslinfo/Makefile index cc000d9453..fc3621c8ae 100644 --- a/contrib/sslinfo/Makefile +++ b/contrib/sslinfo/Makefile @@ -1,3 +1,5 @@ +# $PostgreSQL$ + MODULE_big = sslinfo OBJS = sslinfo.o DATA_built = sslinfo.sql diff --git a/contrib/tablefunc/Makefile b/contrib/tablefunc/Makefile index e2e10c0c9e..4b5b9312ee 100644 --- a/contrib/tablefunc/Makefile +++ b/contrib/tablefunc/Makefile @@ -1,3 +1,5 @@ +# $PostgreSQL$ + MODULES = tablefunc DATA_built = tablefunc.sql DATA = uninstall_tablefunc.sql diff --git a/contrib/xml2/Makefile b/contrib/xml2/Makefile index 0bd5b03297..f7e4c48a54 100644 --- a/contrib/xml2/Makefile +++ b/contrib/xml2/Makefile @@ -1,4 +1,4 @@ -# This makefile will build the new XML and XSLT routines. +# $PostgreSQL$ MODULE_big = pgxml @@ -23,4 +23,3 @@ top_builddir = ../.. include $(top_builddir)/src/Makefile.global include $(top_srcdir)/contrib/contrib-global.mk endif - |