diff options
author | Alec Thomas <alec@swapoff.org> | 2012-09-20 21:24:08 -0400 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2012-09-20 21:24:08 -0400 |
commit | d98de9aeb12ff50d49b833439bd78402e85d1991 (patch) | |
tree | 4e8289ca39d2fd5265e092ba0f8e771d5998d529 /Makefile |
Initial import.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4a8e416 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +PREFIX=/usr/local + +all: + @make -C entityx all + +test: + @make -C entityx test + +clean: + @make -C entityx clean + +cleantests: + @make -C entityx cleantests + +distclean: + @make -C entityx distclean + +install: all + install -m755 ./entityx/libentity.so $(PREFIX)/lib + install -m644 ./entityx/libentity.a $(PREFIX)/lib + install -m644 ./entityx/*.h $(PREFIX)/include |