From 7558e400582ecb5fd9a2bef15569c48f1ae5b93c Mon Sep 17 00:00:00 2001 From: <> Date: Wed, 5 Apr 2017 05:38:33 -0700 Subject: [PATCH] Added make file --- ReflexToQ3/makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ReflexToQ3/makefile 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