-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathMakefile
83 lines (69 loc) · 1.84 KB
/
Makefile
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#
# pg_bulkload: lib/Makefile
#
# Copyright (c) 2007-2025, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
#
SRCS = \
binary.c \
logger.c \
parser_binary.c \
parser_csv.c \
parser_function.c \
parser_tuple.c \
pg_btree.c \
pg_bulkload.c \
pg_strutil.c \
reader.c \
source.c \
writer.c \
writer_binary.c \
writer_buffered.c \
writer_direct.c \
writer_parallel.c \
pgut/pgut-be.c \
pgut/pgut-ipc.c
OBJS = $(SRCS:.c=.o)
MODULE_big = pg_bulkload
EXTENSION = pg_bulkload
# set pg_bulkload version
BULKLOAD_VERSION = $(shell grep "PG_BULKLOAD_VERSION" ../include/common.h | cut -d " " -f 3 | tr -d '"')
#supports EXTENSION (for >=9.1)
DATA_built = pg_bulkload--$(BULKLOAD_VERSION).sql \
pg_bulkload.control
PG_CPPFLAGS = -I../include -I$(libpq_srcdir)
SHLIB_LINK = $(libpq) -lpthread
# handle to which function to be published from this shared library
# see src/Makefile.shlib in PostgreSQL
SHLIB_EXPORTS = exports.txt
ifdef USE_PROFILE
PG_CPPFLAGS += -DENABLE_BULKLOAD_PROFILE
endif
ifndef USE_PGXS
top_builddir = ../../..
makefile_global = $(top_builddir)/src/Makefile.global
ifeq "$(wildcard $(makefile_global))" ""
USE_PGXS = 1 # use pgxs if not in contrib directory
endif
endif
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/$(MODULE_big)
include $(makefile_global)
include $(top_srcdir)/contrib/contrib-global.mk
endif
# remove dependency to libxml2 and libxslt
LIBS := $(filter-out -lxml2, $(LIBS))
LIBS := $(filter-out -lxslt, $(LIBS))
.PHONY: subclean
clean: subclean
subclean:
rm -f nbtsort.c
LDFLAGS+=-Wl,--build-id
pg_bulkload--$(BULKLOAD_VERSION).sql: pg_bulkload.sql.in
sed 's,MODULE_PATHNAME,$$libdir/$(MODULE_big),g' $< \
| sed 's,BULKLOAD_VERSION,$(BULKLOAD_VERSION),g' > $@
pg_bulkload.control: pg_bulkload.control.in
sed 's,BULKLOAD_VERSION,$(BULKLOAD_VERSION),g' $< > $@