Simplify contrib Makefiles by removing unnecessary SRCS macro,
authorTom Lane <[email protected]>
Thu, 19 Oct 2006 17:40:03 +0000 (17:40 +0000)
committerTom Lane <[email protected]>
Thu, 19 Oct 2006 17:40:03 +0000 (17:40 +0000)
per Magnus.

contrib/fuzzystrmatch/Makefile
contrib/pgrowlocks/Makefile
contrib/pgstattuple/Makefile

index 7659cda3b2bd09adfd8a433ade9771fc42d082be..50374e42268d5f8c208152d64a64fab1b4ca3c93 100644 (file)
@@ -1,8 +1,7 @@
 # $PostgreSQL$
 
 MODULE_big = fuzzystrmatch
-SRCS += fuzzystrmatch.c dmetaphone.c
-OBJS = $(SRCS:.c=.o)
+OBJS = fuzzystrmatch.o dmetaphone.o
 DATA_built = fuzzystrmatch.sql
 DATA = uninstall_fuzzystrmatch.sql
 DOCS = README.fuzzystrmatch README.soundex
index ca5e626f83631b7dbae8b156e1ac4ce2074a4097..84382e21f15dd11f8596a9020ddbf9425d14a247 100644 (file)
@@ -6,10 +6,8 @@
 #
 #-------------------------------------------------------------------------
 
-SRCS           = pgrowlocks.c
-
 MODULE_big     = pgrowlocks
-OBJS           = $(SRCS:.c=.o)
+OBJS           = pgrowlocks.o
 DOCS           = README.pgrowlocks README.pgrowlocks.euc_jp
 DATA_built     = pgrowlocks.sql
 DATA           = uninstall_pgrowlocks.sql
index 4a5ab80d94e6d4caba021221c44c3323c371033e..7e2e4b384f6699257b81e82f4e524d705a7e31cd 100644 (file)
@@ -6,10 +6,8 @@
 #
 #-------------------------------------------------------------------------
 
-SRCS           = pgstattuple.c pgstatindex.c
-
 MODULE_big     = pgstattuple
-OBJS           = $(SRCS:.c=.o)
+OBJS           = pgstattuple.o pgstatindex.o
 DOCS           = README.pgstattuple README.pgstattuple.euc_jp
 DATA_built     = pgstattuple.sql
 DATA           = uninstall_pgstattuple.sql