-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
45 lines (34 loc) · 1.02 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
.PHONY = debug release debug-continuous release-continuous clean
SHELL := bash
export CAPNP_INCLUDE_PATH = $(abspath $(dir $(shell which capnp))/../include)
#export CCACHE = $(shell which ccache)
export CXX = $(shell which g++)
export CXXFLAGS+=-DCAPNP_INCLUDE_PATH=$(CAPNP_INCLUDE_PATH)
export CXXFLAGS+=-ggdb --std=c++20
export LIBS = \
-lsystemd \
-lcapnpc -lcapnp-rpc -lcapnp \
-lcapnp-json \
-lkj-async -lkj-gzip -lkj-http -lkj-tls -lkj-test -lkj \
-laws-cpp-sdk-s3 -laws-cpp-sdk-core -laws-crt-cpp \
-lkj-test \
-lexpat \
-lssl -lcrypto \
-luuid \
-lpthread \
-lz \
-lgtest_main -lgtest
NIX_BUILD_CORES ?= 7
EKAM := env \
LC_ALL=C \
EKAM_REMAP_BYPASS_DIRS=$(HOME)/.cache/ \
nice ekam
EKAM_FLAGS := -j $(NIX_BUILD_CORES) -l 200
.DEFAULT: release
debug continuous: export CXXFLAGS+=-O0
release release-continuous: export CXXFLAGS+=-O2 -DNDEBUG
debug-continuous release-continuous: export EKAM_FLAGS+=-c
debug debug-continuous release release-continuous:
$(EKAM) $(EKAM_FLAGS)
clean:
rm -fr bin tmp