diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-30 11:02:39 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-30 11:02:39 -0400 |
commit | b1f93a4f8a5a3e84db9f00d0b41749d4fb32ed26 (patch) | |
tree | 83016b80294f6b7681093ae46aa55840b6fb9ec1 /Makefile | |
parent | 69768fdc5050bbe5877bf80108584400ea292a4f (diff) |
event feature work; ozone bgm redone
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -4,7 +4,7 @@ CC = gcc CXX = g++ ifeq ($(TARGET_OS),linux) - LIBS = -Llib -lgif -lpthread -lGL -lGLEW -lfreetype \ + LIBS = -Llib -lgif -lentityx -lpthread -lGL -lGLEW -lfreetype \ -lSDL2 -lSDL2_image -lSDL2_mixer -lSDL2main endif ifeq ($(TARGET_OS),win32) @@ -40,13 +40,6 @@ clean: @mkdir out/components $(EXEC): $(CXXOUTDIR)/$(CXXOBJ) main.cpp - @echo " CXX entityx" - @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) $(SPECIAL) $(CXXFLAGS) $(CXXINC) $(CXXWARN) -o $(EXEC) main.cpp out/components/*.o out/systems/*.o out/*.o $(LIBS) @rm -rf xml/*.dat |