diff options
author | Andy <drumsetmonkey@gmail.com> | 2017-01-19 09:21:12 -0500 |
---|---|---|
committer | Andy <drumsetmonkey@gmail.com> | 2017-01-19 09:21:12 -0500 |
commit | 213d9ccfbb4752d4c62d6b7e6b3f9172cdf1bccc (patch) | |
tree | 7872c6f30c8adf048a7863a33d837299c7fb0771 /entityx/Makefile | |
parent | 19a32074595a4a2797eaeb978f8bd302f736f6a6 (diff) | |
parent | 8452b199d28bea53bf2c5e3b3d604064000fc73d (diff) |
Limb animation actually works
Diffstat (limited to 'entityx/Makefile')
-rw-r--r-- | entityx/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/entityx/Makefile b/entityx/Makefile new file mode 100644 index 0000000..5deb756 --- /dev/null +++ b/entityx/Makefile @@ -0,0 +1,16 @@ +INC = -I.. +FLG = -std=gnu++11 + +FILES = help/Pool.cc \ + help/Timer.cc \ + Event.cc \ + Entity.cc \ + System.cc +all: + g++ $(INC) $(FLG) -c help/Pool.cc -o out/Pool.o + g++ $(INC) $(FLG) -c help/Timer.cc -o out/Timer.o + 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 libentityx.a out/*.o +# g++ out/*.o -shared -o ../entityx.so
\ No newline at end of file |