forked from Alepha/Alepha
It's all a mess -- not in the new unified form and namespace. I need to do a big cleanup pass.
21 lines
311 B
Makefile
21 lines
311 B
Makefile
CPPFLAGS+= -I ../../../
|
|
CXXFLAGS+= -std=c++1z
|
|
CXXFLAGS+= -g -O0
|
|
#CXXFLAGS+= -O3
|
|
CXX=clang++
|
|
#LDLIBS+= -lboost_thread -lboost_system
|
|
CC=clang++
|
|
|
|
TESTS=test0 test1
|
|
|
|
all: $(TESTS)
|
|
|
|
|
|
HEADERS= ../memory.h ../../Mockination/MockFunction.h Makefile
|
|
|
|
test0.o: $(HEADERS)
|
|
test1.o: $(HEADERS)
|
|
|
|
clean:
|
|
rm -f *.o $(TESTS)
|