File: Makefile

package info (click to toggle)
postgresql-9.4 9.4.18-0%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 121,624 kB
  • sloc: ansic: 672,040; sql: 55,424; yacc: 28,505; perl: 10,067; lex: 6,757; sh: 5,199; makefile: 4,103; asm: 65; sed: 15; python: 12
file content (20 lines) | stat: -rw-r--r-- 407 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
# contrib/dict_int/Makefile

MODULE_big = dict_int
OBJS = dict_int.o

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

REGRESS = dict_int

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