aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
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