diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-10 21:26:13 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-10 21:26:13 -0500 |
commit | f800dbc034e7a70a613bab8cd9d147be4f6e88b6 (patch) | |
tree | c8714ddc8f6712f07d921c08fd92ae8ef228494b /entityx/Makefile | |
parent | c6651145a4a6e6611b585c1a87c127f38751db4b (diff) |
windows build
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 |