aboutsummaryrefslogtreecommitdiffstats
path: root/entityx/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'entityx/Makefile')
-rw-r--r--entityx/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/entityx/Makefile b/entityx/Makefile
index d5c748f..64c55b6 100644
--- a/entityx/Makefile
+++ b/entityx/Makefile
@@ -1,5 +1,3 @@
-# gamedev CHANGE - changed output of libentityx to ../lib/
-
INC = -I..
FLG = -std=gnu++11
@@ -15,6 +13,6 @@ all:
g++ $(INC) $(FLG) -c Event.cc -o out/Event.o
g++ $(INC) $(FLG) -c Entity.cc -o out/Entity.o
g++ $(INC) $(FLG) -c System.cc -o out/System.o
- ar rvs ../lib/libentityx.a out/*.o
+ ar rvs libentityx.a out/*.o
# g++ out/*.o -shared -o ../entityx.so
rm -rf out