aboutsummaryrefslogtreecommitdiff
path: root/unittest/Makefile
blob: 9e8fbc15cfd60f324e9e8eae7a608d58baa001f2 (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

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)