13 lines
270 B
Makefile
13 lines
270 B
Makefile
|
EXV6=reflex2q3_v6
|
||
|
EXV8=reflex2q3_v8
|
||
|
CC=g++
|
||
|
CFLAGS=-std=c++11 -I"includes" -I"/usr/include/eigen3"
|
||
|
|
||
|
all: v6 v8
|
||
|
|
||
|
v6:
|
||
|
$(CC) includes/mapparser.cpp main.cpp $(CFLAGS) -o $(EXV6) 2>error6.log
|
||
|
|
||
|
v8:
|
||
|
$(CC) includes/v8mapparser.cpp main.cpp $(CFLAGS) -o $(EXV8) 2>error8.log
|