aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-11 19:11:56 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-11 19:11:56 -0500
commit37ae27d47e148f3b4b7eaaa76ce98df680abcc6f (patch)
tree37616a5acfb08c77ee8f1ae7b803f3293d6df5fb /Makefile
parent76a8dfce1c91c8536c940b53883eaf0ed7bd769a (diff)
entity manager lock
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 0e1f54e..f8d7511 100644
--- a/Makefile
+++ b/Makefile
@@ -39,11 +39,11 @@ cleandata:
touch brice.dat
$(EXEC): $(CXXOUTDIR)/$(CXXOBJ) main.cpp
- #g++ -I. -std=c++11 -c entityx/help/Pool.cc -o out/Pool.o
- #g++ -I. -std=c++11 -c entityx/help/Timer.cc -o out/Timer.o
- #g++ -I. -std=c++11 -c entityx/Event.cc -o out/Event.o
- #g++ -I. -std=c++11 -c entityx/Entity.cc -o out/Entity.o
- #g++ -I. -std=c++11 -c entityx/System.cc -o out/System.o
+ g++ -I. -std=c++11 -c entityx/help/Pool.cc -o out/Pool.o
+ g++ -I. -std=c++11 -c entityx/help/Timer.cc -o out/Timer.o
+ g++ -I. -std=c++11 -c entityx/Event.cc -o out/Event.o
+ g++ -I. -std=c++11 -c entityx/Entity.cc -o out/Entity.o
+ g++ -I. -std=c++11 -c entityx/System.cc -o out/System.o
@echo " CXX/LD main"
@$(CXX) $(CXXFLAGS) $(CXXINC) $(CXXWARN) -o $(EXEC) main.cpp out/*.o $(LIBS)