]> granicus.if.org Git - postgresql/blob - contrib/pgrowlocks/Makefile
Simplify contrib Makefiles by removing unnecessary SRCS macro,
[postgresql] / contrib / pgrowlocks / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # pgrowlocks Makefile
4 #
5 # $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.3 2006/10/19 17:40:03 tgl Exp $
6 #
7 #-------------------------------------------------------------------------
8
9 MODULE_big      = pgrowlocks
10 OBJS            = pgrowlocks.o
11 DOCS            = README.pgrowlocks README.pgrowlocks.euc_jp
12 DATA_built      = pgrowlocks.sql
13 DATA            = uninstall_pgrowlocks.sql
14
15 ifdef USE_PGXS
16 PGXS = $(shell pg_config --pgxs)
17 include $(PGXS)
18 else
19 subdir = contrib/pgrowlocks
20 top_builddir = ../..
21 include $(top_builddir)/src/Makefile.global
22 include $(top_srcdir)/contrib/contrib-global.mk
23 endif
24