diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-11 19:11:56 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-11 19:11:56 -0500 |
commit | 37ae27d47e148f3b4b7eaaa76ce98df680abcc6f (patch) | |
tree | 37616a5acfb08c77ee8f1ae7b803f3293d6df5fb /Makefile | |
parent | 76a8dfce1c91c8536c940b53883eaf0ed7bd769a (diff) |
entity manager lock
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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) |