Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 72ec567

Browse files
committed
Simplify contrib Makefiles by removing unnecessary SRCS macro,
per Magnus.
1 parent dbb397f commit 72ec567

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

contrib/fuzzystrmatch/Makefile

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.7 2006/02/27 12:54:38 petere Exp $
1+
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.8 2006/10/19 17:40:03 tgl Exp $
22

33
MODULE_big = fuzzystrmatch
4-
SRCS += fuzzystrmatch.c dmetaphone.c
5-
OBJS = $(SRCS:.c=.o)
4+
OBJS = fuzzystrmatch.o dmetaphone.o
65
DATA_built = fuzzystrmatch.sql
76
DATA = uninstall_fuzzystrmatch.sql
87
DOCS = README.fuzzystrmatch README.soundex

contrib/pgrowlocks/Makefile

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22
#
33
# pgrowlocks Makefile
44
#
5-
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.2 2006/09/30 18:08:32 tgl Exp $
5+
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.3 2006/10/19 17:40:03 tgl Exp $
66
#
77
#-------------------------------------------------------------------------
88

9-
SRCS = pgrowlocks.c
10-
119
MODULE_big = pgrowlocks
12-
OBJS = $(SRCS:.c=.o)
10+
OBJS = pgrowlocks.o
1311
DOCS = README.pgrowlocks README.pgrowlocks.euc_jp
1412
DATA_built = pgrowlocks.sql
1513
DATA = uninstall_pgrowlocks.sql

contrib/pgstattuple/Makefile

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22
#
33
# pgstattuple Makefile
44
#
5-
# $PostgreSQL: pgsql/contrib/pgstattuple/Makefile,v 1.6 2006/09/02 17:05:29 momjian Exp $
5+
# $PostgreSQL: pgsql/contrib/pgstattuple/Makefile,v 1.7 2006/10/19 17:40:03 tgl Exp $
66
#
77
#-------------------------------------------------------------------------
88

9-
SRCS = pgstattuple.c pgstatindex.c
10-
119
MODULE_big = pgstattuple
12-
OBJS = $(SRCS:.c=.o)
10+
OBJS = pgstattuple.o pgstatindex.o
1311
DOCS = README.pgstattuple README.pgstattuple.euc_jp
1412
DATA_built = pgstattuple.sql
1513
DATA = uninstall_pgstattuple.sql

0 commit comments

Comments
 (0)