Added make file

This commit is contained in:
2017-04-05 05:38:33 -07:00
parent 173f4875d8
commit 7558e40058

12
ReflexToQ3/makefile Normal file
View File

@ -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