Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
0b36cb83
Commit
0b36cb83
authored
Sep 27, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PGXS should be set with := not =, as specified in the documentation,
to avoid useless multiple executions of pg_config.
parent
8ddd22f2
Changes
33
Hide whitespace changes
Inline
Side-by-side
Showing
33 changed files
with
61 additions
and
61 deletions
+61
-61
contrib/btree_gist/Makefile
contrib/btree_gist/Makefile
+1
-1
contrib/chkpass/Makefile
contrib/chkpass/Makefile
+2
-2
contrib/cube/Makefile
contrib/cube/Makefile
+2
-2
contrib/dbase/Makefile
contrib/dbase/Makefile
+2
-2
contrib/dblink/Makefile
contrib/dblink/Makefile
+2
-2
contrib/dbmirror/Makefile
contrib/dbmirror/Makefile
+2
-2
contrib/earthdistance/Makefile
contrib/earthdistance/Makefile
+2
-2
contrib/fulltextindex/Makefile
contrib/fulltextindex/Makefile
+2
-2
contrib/fuzzystrmatch/Makefile
contrib/fuzzystrmatch/Makefile
+2
-2
contrib/intagg/Makefile
contrib/intagg/Makefile
+2
-2
contrib/intarray/Makefile
contrib/intarray/Makefile
+2
-2
contrib/isbn_issn/Makefile
contrib/isbn_issn/Makefile
+2
-2
contrib/lo/Makefile
contrib/lo/Makefile
+2
-2
contrib/ltree/Makefile
contrib/ltree/Makefile
+1
-1
contrib/mSQL-interface/Makefile
contrib/mSQL-interface/Makefile
+2
-2
contrib/oid2name/Makefile
contrib/oid2name/Makefile
+2
-2
contrib/pg_buffercache/Makefile
contrib/pg_buffercache/Makefile
+2
-2
contrib/pg_trgm/Makefile
contrib/pg_trgm/Makefile
+1
-1
contrib/pgbench/Makefile
contrib/pgbench/Makefile
+2
-2
contrib/pgcrypto/Makefile
contrib/pgcrypto/Makefile
+2
-2
contrib/pgstattuple/Makefile
contrib/pgstattuple/Makefile
+2
-2
contrib/seg/Makefile
contrib/seg/Makefile
+2
-2
contrib/spi/Makefile
contrib/spi/Makefile
+2
-2
contrib/tablefunc/Makefile
contrib/tablefunc/Makefile
+1
-1
contrib/tips/Makefile
contrib/tips/Makefile
+2
-2
contrib/tsearch2/Makefile
contrib/tsearch2/Makefile
+2
-2
contrib/tsearch2/ispell/Makefile
contrib/tsearch2/ispell/Makefile
+2
-2
contrib/tsearch2/snowball/Makefile
contrib/tsearch2/snowball/Makefile
+2
-2
contrib/tsearch2/wordparser/Makefile
contrib/tsearch2/wordparser/Makefile
+2
-2
contrib/userlock/Makefile
contrib/userlock/Makefile
+2
-2
contrib/vacuumlo/Makefile
contrib/vacuumlo/Makefile
+2
-2
contrib/xml2/Makefile
contrib/xml2/Makefile
+1
-1
src/tutorial/Makefile
src/tutorial/Makefile
+2
-2
No files found.
contrib/btree_gist/Makefile
View file @
0b36cb83
...
...
@@ -13,7 +13,7 @@ REGRESS = init int2 int4 int8 float4 float8 cash oid timestamp timestamptz t
date
interval macaddr inet cidr text varchar char bytea bit varbit numeric
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/btree_gist
...
...
contrib/chkpass/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/chkpass/Makefile,v 1.
6 2004/08/20 20:13:02 momjian
Exp $
# $PostgreSQL: pgsql/contrib/chkpass/Makefile,v 1.
7 2005/09/27 17:13:00 tgl
Exp $
MODULE_big
=
chkpass
OBJS
=
chkpass.o
...
...
@@ -7,7 +7,7 @@ DATA_built = chkpass.sql
DOCS
=
README.chkpass
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/chkpass
...
...
contrib/cube/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.1
3 2005/07/24 23:30:09
tgl Exp $
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.1
4 2005/09/27 17:13:00
tgl Exp $
MODULE_big
=
cube
OBJS
=
cube.o cubeparse.o
...
...
@@ -12,7 +12,7 @@ EXTRA_CLEAN = cubeparse.c cubeparse.h cubescan.c y.tab.c y.tab.h
SHLIB_LINK
+=
$(
filter
-lm
,
$(LIBS)
)
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/cube
...
...
contrib/dbase/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/dbase/Makefile,v 1.
7 2005/03/25 18:17:10 momjian
Exp $
# $PostgreSQL: pgsql/contrib/dbase/Makefile,v 1.
8 2005/09/27 17:13:01 tgl
Exp $
PROGRAM
=
dbf2pg
OBJS
=
dbf.o dbf2pg.o endian.o
...
...
@@ -16,7 +16,7 @@ MAN = dbf2pg.1 # XXX not implemented
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/dbase
...
...
contrib/dblink/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.
9 2004/08/20 20:13:03 momjian
Exp $
# $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.
10 2005/09/27 17:13:01 tgl
Exp $
MODULE_big
=
dblink
PG_CPPFLAGS
=
-I
$(libpq_srcdir)
...
...
@@ -11,7 +11,7 @@ REGRESS = dblink
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/dblink
...
...
contrib/dbmirror/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/dbmirror/Makefile,v 1.
4 2004/11/04 06:09:19 neilc
Exp $
# $PostgreSQL: pgsql/contrib/dbmirror/Makefile,v 1.
5 2005/09/27 17:13:01 tgl
Exp $
MODULES
=
pending
SCRIPTS
=
clean_pending.pl DBMirror.pl
...
...
@@ -6,7 +6,7 @@ DATA = AddTrigger.sql MirrorSetup.sql slaveDatabase.conf
DOCS
=
README.dbmirror
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/dbmirror
...
...
contrib/earthdistance/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/earthdistance/Makefile,v 1.1
5 2005/07/24 23:30:09
tgl Exp $
# $PostgreSQL: pgsql/contrib/earthdistance/Makefile,v 1.1
6 2005/09/27 17:13:02
tgl Exp $
MODULES
=
earthdistance
DATA_built
=
earthdistance.sql
...
...
@@ -8,7 +8,7 @@ REGRESS = earthdistance
SHLIB_LINK
+=
$(
filter
-lm
,
$(LIBS)
)
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/earthdistance
...
...
contrib/fulltextindex/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/fulltextindex/Makefile,v 1.1
3 2004/08/20 20:13:04 momjian
Exp $
# $PostgreSQL: pgsql/contrib/fulltextindex/Makefile,v 1.1
4 2005/09/27 17:13:02 tgl
Exp $
MODULES
=
fti
DATA_built
=
fti.sql
...
...
@@ -6,7 +6,7 @@ DOCS = README.fti
SCRIPTS
=
fti.pl
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/fulltextindex
...
...
contrib/fuzzystrmatch/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.
5 2004/08/20 20:13:04 momjian
Exp $
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.
6 2005/09/27 17:13:03 tgl
Exp $
MODULE_big
=
fuzzystrmatch
SRCS
+=
fuzzystrmatch.c dmetaphone.c
...
...
@@ -7,7 +7,7 @@ DATA_built = fuzzystrmatch.sql
DOCS
=
README.fuzzystrmatch README.soundex
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/fuzzystrmatch
...
...
contrib/intagg/Makefile
View file @
0b36cb83
...
...
@@ -2,14 +2,14 @@
# Makefile for integer aggregator
# Copyright (C) 2001 Digital Music Network.
# by Mark L. Woodward
# $PostgreSQL: pgsql/contrib/intagg/Makefile,v 1.
5 2004/08/20 20:13:04 momjian
Exp $
# $PostgreSQL: pgsql/contrib/intagg/Makefile,v 1.
6 2005/09/27 17:13:03 tgl
Exp $
MODULES
=
int_aggregate
DATA_built
=
int_aggregate.sql
DOCS
=
README.int_aggregate
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/intagg
...
...
contrib/intarray/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/intarray/Makefile,v 1.1
1 2004/08/20 20:13:04 momjian
Exp $
# $PostgreSQL: pgsql/contrib/intarray/Makefile,v 1.1
2 2005/09/27 17:13:04 tgl
Exp $
MODULE_big
=
_int
OBJS
=
_int_bool.o _int_gist.o _int_op.o _int_tool.o _intbig_gist.o
...
...
@@ -7,7 +7,7 @@ DOCS = README.intarray
REGRESS
=
_int
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/intarray
...
...
contrib/isbn_issn/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/isbn_issn/Makefile,v 1.1
3 2004/08/20 20:13:04 momjian
Exp $
# $PostgreSQL: pgsql/contrib/isbn_issn/Makefile,v 1.1
4 2005/09/27 17:13:04 tgl
Exp $
MODULES
=
isbn_issn
DATA_built
=
isbn_issn.sql
DOCS
=
README.isbn_issn
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/isbn_issn
...
...
contrib/lo/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/lo/Makefile,v 1.1
3 2004/08/20 20:13:05 momjian
Exp $
# $PostgreSQL: pgsql/contrib/lo/Makefile,v 1.1
4 2005/09/27 17:13:04 tgl
Exp $
MODULES
=
lo
DATA_built
=
lo.sql
...
...
@@ -6,7 +6,7 @@ DATA = lo_drop.sql lo_test.sql
DOCS
=
README.lo
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/lo
...
...
contrib/ltree/Makefile
View file @
0b36cb83
...
...
@@ -7,7 +7,7 @@ DOCS = README.ltree
REGRESS
=
ltree
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/ltree
...
...
contrib/mSQL-interface/Makefile
View file @
0b36cb83
#
# $PostgreSQL: pgsql/contrib/mSQL-interface/Makefile,v 1.
9 2004/08/20 20:13:05 momjian
Exp $
# $PostgreSQL: pgsql/contrib/mSQL-interface/Makefile,v 1.
10 2005/09/27 17:13:05 tgl
Exp $
#
NAME
=
mpgsql
...
...
@@ -10,7 +10,7 @@ OBJS = mpgsql.o
PG_CPPFLAGS
=
-I
$(libpq_srcdir)
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/mSQL-interface
...
...
contrib/oid2name/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/oid2name/Makefile,v 1.
7 2005/03/25 18:17:11 momjian
Exp $
# $PostgreSQL: pgsql/contrib/oid2name/Makefile,v 1.
8 2005/09/27 17:13:06 tgl
Exp $
PROGRAM
=
oid2name
OBJS
=
oid2name.o
...
...
@@ -9,7 +9,7 @@ PG_LIBS = $(libpq_pgport)
DOCS
=
README.oid2name
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/oid2name
...
...
contrib/pg_buffercache/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/pg_buffercache/Makefile,v 1.
1 2005/03/12 15:36:24 neilc
Exp $
# $PostgreSQL: pgsql/contrib/pg_buffercache/Makefile,v 1.
2 2005/09/27 17:13:07 tgl
Exp $
MODULE_big
=
pg_buffercache
OBJS
=
pg_buffercache_pages.o
...
...
@@ -7,7 +7,7 @@ DATA_built = pg_buffercache.sql
DOCS
=
README.pg_buffercache
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/pg_buffercache
...
...
contrib/pg_trgm/Makefile
View file @
0b36cb83
...
...
@@ -10,7 +10,7 @@ REGRESS = pg_trgm
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/pg_trgm
...
...
contrib/pgbench/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.1
3 2005/03/25 18:17:11 momjian
Exp $
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.1
4 2005/09/27 17:13:08 tgl
Exp $
PROGRAM
=
pgbench
OBJS
=
pgbench.o
...
...
@@ -9,7 +9,7 @@ PG_LIBS = $(libpq_pgport)
DOCS
=
README.pgbench README.pgbench_jis
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/pgbench
...
...
contrib/pgcrypto/Makefile
View file @
0b36cb83
#
# $PostgreSQL: pgsql/contrib/pgcrypto/Makefile,v 1.2
2 2005/08/13 02:06:20 momjian
Exp $
# $PostgreSQL: pgsql/contrib/pgcrypto/Makefile,v 1.2
3 2005/09/27 17:13:08 tgl
Exp $
#
INT_SRCS
=
md5.c sha1.c sha2.c internal.c blf.c rijndael.c
\
...
...
@@ -44,7 +44,7 @@ REGRESS = init md5 sha1 hmac-md5 hmac-sha1 blowfish rijndael \
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/pgcrypto
...
...
contrib/pgstattuple/Makefile
View file @
0b36cb83
...
...
@@ -2,7 +2,7 @@
#
# pgstattuple Makefile
#
# $PostgreSQL: pgsql/contrib/pgstattuple/Makefile,v 1.
3 2004/08/20 20:13:07 momjian
Exp $
# $PostgreSQL: pgsql/contrib/pgstattuple/Makefile,v 1.
4 2005/09/27 17:13:09 tgl
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -14,7 +14,7 @@ DOCS = README.pgstattuple README.pgstattuple.euc_jp
DATA_built
=
pgstattuple.sql
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/pgstattuple
...
...
contrib/seg/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/seg/Makefile,v 1.1
2 2004/08/20 20:13:07 momjian
Exp $
# $PostgreSQL: pgsql/contrib/seg/Makefile,v 1.1
3 2005/09/27 17:13:09 tgl
Exp $
MODULE_big
=
seg
OBJS
=
seg.o segparse.o
...
...
@@ -9,7 +9,7 @@ REGRESS = seg
EXTRA_CLEAN
=
segparse.c segparse.h segscan.c y.tab.c y.tab.h
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/seg
...
...
contrib/spi/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/spi/Makefile,v 1.2
5 2004/11/17 17:45:59
tgl Exp $
# $PostgreSQL: pgsql/contrib/spi/Makefile,v 1.2
6 2005/09/27 17:13:10
tgl Exp $
MODULES
=
autoinc insert_username moddatetime refint timetravel
DATA_built
=
$(
addsuffix
.sql,
$(MODULES)
)
...
...
@@ -9,7 +9,7 @@ DOCS = README.spi $(addsuffix .example, $(MODULES))
PG_CPPFLAGS
=
-DREFINT_VERBOSE
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/spi
...
...
contrib/tablefunc/Makefile
View file @
0b36cb83
...
...
@@ -6,7 +6,7 @@ REGRESS = tablefunc
SHLIB_LINK
+=
$(
filter
-lm
,
$(LIBS)
)
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/tablefunc
...
...
contrib/tips/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/tips/Makefile,v 1.
7 2004/08/20 20:13:08 momjian
Exp $
# $PostgreSQL: pgsql/contrib/tips/Makefile,v 1.
8 2005/09/27 17:13:10 tgl
Exp $
DOCS
=
README.apachelog
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/tips
...
...
contrib/tsearch2/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.
9 2005/07/24 23:30:10
tgl Exp $
# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.
10 2005/09/27 17:13:11
tgl Exp $
MODULE_big
=
tsearch2
OBJS
=
dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o
\
...
...
@@ -23,7 +23,7 @@ SHLIB_LINK += $(filter -lm, $(LIBS))
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/tsearch2
...
...
contrib/tsearch2/ispell/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/tsearch2/ispell/Makefile,v 1.
7 2005/09/15 11:14:18 teodor
Exp $
# $PostgreSQL: pgsql/contrib/tsearch2/ispell/Makefile,v 1.
8 2005/09/27 17:13:11 tgl
Exp $
PG_CPPFLAGS
=
-I
$(srcdir)
/..
SUBOBJS
=
spell.o regis.o
EXTRA_CLEAN
=
SUBSYS.o
$(SUBOBJS)
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/tsearch2
...
...
contrib/tsearch2/snowball/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/tsearch2/snowball/Makefile,v 1.
6 2005/09/15 11:14:18 teodor
Exp $
# $PostgreSQL: pgsql/contrib/tsearch2/snowball/Makefile,v 1.
7 2005/09/27 17:13:12 tgl
Exp $
PG_CPPFLAGS
=
-I
$(srcdir)
/..
...
...
@@ -6,7 +6,7 @@ SUBOBJS = english_stem.o api.o russian_stem.o utilities.o
EXTRA_CLEAN
=
SUBSYS.o
$(SUBOBJS)
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/tsearch2
...
...
contrib/tsearch2/wordparser/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/tsearch2/wordparser/Makefile,v 1.
6 2005/09/15 11:14:18 teodor
Exp $
# $PostgreSQL: pgsql/contrib/tsearch2/wordparser/Makefile,v 1.
7 2005/09/27 17:13:12 tgl
Exp $
PG_CPPFLAGS
=
-I
$(srcdir)
/..
...
...
@@ -6,7 +6,7 @@ SUBOBJS = parser.o deflex.o
EXTRA_CLEAN
=
SUBSYS.o
$(SUBOBJS)
parser.c
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/tsearch2
...
...
contrib/userlock/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/userlock/Makefile,v 1.1
8 2004/08/20 20:13:09 momjian
Exp $
# $PostgreSQL: pgsql/contrib/userlock/Makefile,v 1.1
9 2005/09/27 17:13:13 tgl
Exp $
MODULES
=
user_locks
DATA_built
=
user_locks.sql
DOCS
=
README.user_locks
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/userlock
...
...
contrib/vacuumlo/Makefile
View file @
0b36cb83
# $PostgreSQL: pgsql/contrib/vacuumlo/Makefile,v 1.1
4 2005/03/25 18:17:12 momjian
Exp $
# $PostgreSQL: pgsql/contrib/vacuumlo/Makefile,v 1.1
5 2005/09/27 17:13:13 tgl
Exp $
PROGRAM
=
vacuumlo
OBJS
=
vacuumlo.o
...
...
@@ -9,7 +9,7 @@ PG_LIBS = $(libpq_pgport)
DOCS
=
README.vacuumlo
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/vacuumlo
...
...
contrib/xml2/Makefile
View file @
0b36cb83
...
...
@@ -14,7 +14,7 @@ DOCS = README.xml2
override
CFLAGS
+=
$(
shell
xml2-config
--cflags
)
ifdef
USE_PGXS
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/xml2
...
...
src/tutorial/Makefile
View file @
0b36cb83
...
...
@@ -9,7 +9,7 @@
# to build using the surrounding source tree.
#
# IDENTIFICATION
# $PostgreSQL: pgsql/src/tutorial/Makefile,v 1.1
8 2005/01/13 18:23:22
tgl Exp $
# $PostgreSQL: pgsql/src/tutorial/Makefile,v 1.1
9 2005/09/27 17:13:14
tgl Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -24,7 +24,7 @@ top_builddir = ../..
include
$(top_builddir)/src/Makefile.global
include
$(top_srcdir)/src/makefiles/pgxs.mk
else
PGXS
=
$(
shell
pg_config
--pgxs
)
PGXS
:
=
$(
shell
pg_config
--pgxs
)
include
$(PGXS)
endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment