blob: dbd003e1d43ad8b8052ab2912654843bca2fa970 (
plain)
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
|
CC = $(PREFIX)-gcc
#CXX = $(PREFIX)-g++
CXX = clang++-3.8
LD = $(CXX)
INCLUDE = -I../include -ICatch/single_include/
LIB = -L../build
LDLIBS = -lnitrokey
BUILD = build
CXXFLAGS = -std=c++14 -fPIC -Wno-gnu-variable-sized-type-not-at-end
CXXSOURCES = $(wildcard *.cc)
TARGETS = $(CXXSOURCES:%.cc=$(BUILD)/%)
DEPENDS = $(CXXSOURCES:%.cc=$(BUILD)/%.d)
$(BUILD)/%.d: %.cc
$(CXX) -M $< -o $@ $(INCLUDE) $(CXXFLAGS)
$(BUILD)/%: %.cc $(DEPENDS)
$(CXX) $< -o $@ $(INCLUDE) $(LIB) $(CXXFLAGS) $(LDLIBS)
all: $(TARGETS)
clean:
rm -f $(TARGETS)
mrproper: clean
rm -f $(BUILD)/*.d
.PHONY: all clean mrproper
include $(wildcard build/*.d)
|