40 lines
923 B
Makefile
40 lines
923 B
Makefile
EX=reflex2q3
|
|
CC=g++
|
|
CFLAGS=-std=c++11 -I"./includes" -I"./includes/Catch/single_include" -I"./includes/cxxopts/include" -I"/usr/include/eigen3"
|
|
TESTEX=test/test-parser
|
|
UNITEX=test/catch
|
|
|
|
all: main
|
|
|
|
main: planes.o brushdef.o oopless-parser.o EntityConverter.o
|
|
$(CC) $^ main.cpp $(CFLAGS) -o $(EX) 2>error8.log
|
|
|
|
test: planes.o brushdef.o oopless-parser.o test-parser.o
|
|
$(CC) $^ $(CFLAGS) -o $(TESTEX)
|
|
|
|
unittest: EntityConverter.o catch.o
|
|
$(CC) $^ $(CFLAGS) -o $(UNITEX)
|
|
mv test/catch ../.git/hooks/pre-commit
|
|
|
|
test-parser.o: test/test-parser.cpp
|
|
$(CC) -c $^ $(CFLAGS)
|
|
|
|
catch.o: test/catch.cpp
|
|
$(CC) -c $^ $(CFLAGS)
|
|
|
|
oopless-parser.o: includes/oopless-parser.cpp
|
|
$(CC) -c $^ $(CFLAGS)
|
|
|
|
brushdef.o: includes/brushdef.cpp
|
|
$(CC) -c $^ $(CFLAGS)
|
|
|
|
planes.o: includes/planes.cpp
|
|
$(CC) -c $^ $(CFLAGS)
|
|
|
|
EntityConverter.o: includes/EntityConverter.cpp
|
|
$(CC) -c $^ $(CFLAGS)
|
|
|
|
clean:
|
|
rm *.o *.log $(EX) $(TESTEX) $(UNITEX)
|
|
|