-
Notifications
You must be signed in to change notification settings - Fork 80
/
Makefile
66 lines (55 loc) · 2.22 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
.PHONY: default build test benchmark update_source clean
default: test
build:
go build
test: build
go test -v ./
benchmark:
go build -a
go test -test.bench=. -test.run=XXX -test.benchtime 10s -test.benchmem -test.cpu=4
#go test -c -o benchmark
#GODEBUG=schedtrace=100 ./benchmark -test.bench=BenchmarkRawParseCreateTableParallel -test.run=XXX -test.benchtime 20s -test.benchmem -test.cpu=16
# --- Below only needed for releasing new versions
LIB_PG_QUERY_TAG = 43bad3cbcd1a70a30494b64f464c3f60579884ed
root_dir := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
LIB_TMPDIR = $(root_dir)/tmp
LIBDIR = $(LIB_TMPDIR)/libpg_query
LIBDIRGZ = $(TMPDIR)/libpg_query-$(LIB_PG_QUERY_TAG).tar.gz
$(LIBDIR): $(LIBDIRGZ)
mkdir -p $(LIBDIR)
cd $(LIB_TMPDIR); tar -xzf $(LIBDIRGZ) -C $(LIBDIR) --strip-components=1
$(LIBDIRGZ):
mkdir -p $(LIB_TMPDIR)
curl -o $(LIBDIRGZ) https://codeload.github.com/pganalyze/libpg_query/tar.gz/$(LIB_PG_QUERY_TAG)
update_source: clean $(LIBDIR)
rm -f parser/*.{c,h}
rm -fr parser/include
# Reduce everything down to one directory
cp -a $(LIBDIR)/src/* parser/
mv parser/postgres/include parser/include/postgres
rm parser/pg_query_outfuncs_protobuf_cpp.cc
mv parser/postgres/* parser/
rmdir parser/postgres
cp -a $(LIBDIR)/pg_query.h parser/include
# Protobuf definitions
mkdir -p $(PWD)/bin
GOBIN=$(PWD)/bin go install google.golang.org/protobuf/cmd/protoc-gen-go
PATH="$(PWD)/bin:$(PATH)" protoc --proto_path=$(LIBDIR)/protobuf --go_out=. --go_opt=Mpg_query.proto=/pg_query --go_opt=paths=source_relative $(LIBDIR)/protobuf/pg_query.proto
mkdir -p parser/include/protobuf
cp -a $(LIBDIR)/protobuf/*.h parser/include/protobuf
cp -a $(LIBDIR)/protobuf/*.c parser/
# Protobuf library code
mkdir -p parser/include/protobuf-c
cp -a $(LIBDIR)/vendor/protobuf-c/*.h parser/include
cp -a $(LIBDIR)/vendor/protobuf-c/*.h parser/include/protobuf-c
cp -a $(LIBDIR)/vendor/protobuf-c/*.c parser/
# xxhash library code
mkdir -p parser/include/xxhash
cp -a $(LIBDIR)/vendor/xxhash/*.h parser/include
cp -a $(LIBDIR)/vendor/xxhash/*.h parser/include/xxhash
cp -a $(LIBDIR)/vendor/xxhash/*.c parser/
# Other support files
rm -fr testdata
cp -a $(LIBDIR)/testdata testdata
clean:
-@ $(RM) -r $(LIB_TMPDIR)