File: Makefile

package info (click to toggle)
postgresql-9.1 9.1.21-0%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 109,588 kB
  • sloc: ansic: 578,671; sql: 44,674; yacc: 26,399; perl: 6,541; lex: 6,173; sh: 5,286; makefile: 3,847; asm: 65; sed: 15; python: 12
file content (23 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# contrib/btree_gin/Makefile

MODULE_big = btree_gin
OBJS = btree_gin.o

EXTENSION = btree_gin
DATA = btree_gin--1.0.sql btree_gin--unpackaged--1.0.sql

REGRESS = install_btree_gin int2 int4 int8 float4 float8 money oid \
	timestamp timestamptz time timetz date interval \
	macaddr inet cidr text varchar char bytea bit varbit \
	numeric

ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/btree_gin
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif