diff --git a/ReflexToQ3/makefile b/ReflexToQ3/makefile new file mode 100644 index 0000000..83ae8b9 --- /dev/null +++ b/ReflexToQ3/makefile @@ -0,0 +1,12 @@ +EXV6=reflex2q3_v6 +EXV8=reflex2q3_v8 +CC=g++ +CFLAGS=-std=c++11 -I"includes" + +all: V6 V8 + +V6: + $(CC) includes/mapparser.cpp main.cpp $(CFLAGS) -o $(EXV6) 2>error6.log + +V8: + $(CC) includes/mapparser.cpp main.cpp $(CFLAGS) -o $(EXV8) 2>error8.log \ No newline at end of file