-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (30 loc) · 761 Bytes
/
Makefile
File metadata and controls
34 lines (30 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# snowflake/Makefile
MODULES = snowflake
OBJS = \
$(WIN32RES) \
snowflake.o \
EXTENSION = snowflake
DATA = snowflake--1.0.sql \
snowflake--1.0--1.1.sql \
snowflake--1.1.sql \
snowflake--1.1--1.2.sql \
snowflake--1.2.sql \
snowflake--1.2--2.0.sql \
snowflake--2.0.sql \
snowflake--2.0--2.2.sql \
snowflake--2.2.sql \
snowflake--2.2--2.3.sql \
snowflake--2.3.sql \
snowflake--2.3--2.4.sql
PGFILEDESC = "snowflake - snowflake style IDs for PostgreSQL"
REGRESS = conversion
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/snowflake
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif