aboutsummaryrefslogtreecommitdiffstats
path: root/entityx
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2022-05-31 21:21:23 -0400
committerClyne Sullivan <clyne@bitgloo.com>2022-05-31 21:21:23 -0400
commit23f14a87adac16acf9ee8bc1df2e6cd025ef86e3 (patch)
tree72405f1f2a7add43edb10bc03fb8931d22be63d3 /entityx
parent75d919eee490fa28827c5a453aca196496c57d4b (diff)
clean up build processrefactor
Diffstat (limited to 'entityx')
-rw-r--r--entityx/Makefile4
-rw-r--r--entityx/libentityx.abin549286 -> 572196 bytes
2 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
diff --git a/entityx/libentityx.a b/entityx/libentityx.a
index 2196a18..2c8a653 100644
--- a/entityx/libentityx.a
+++ b/entityx/libentityx.a
Binary files differ