summaryrefslogtreecommitdiff
path: root/tolua/GNUmakefile
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2014-10-14 09:49:43 +0200
committerAndreas Baumann <abaumann@yahoo.com>2014-10-14 09:49:43 +0200
commitb30d86ed803cf626e2cf167e83ca331388bbee68 (patch)
tree77216a08af8bbd3728f6e0cc24a3266a7a6375e7 /tolua/GNUmakefile
parent49f7abb97a4225d25cf484c876a51bbe215727a2 (diff)
downloadcrawler-b30d86ed803cf626e2cf167e83ca331388bbee68.tar.gz
crawler-b30d86ed803cf626e2cf167e83ca331388bbee68.tar.bz2
add NMAKE build system to tolua on Windows
Diffstat (limited to 'tolua/GNUmakefile')
-rw-r--r--tolua/GNUmakefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/tolua/GNUmakefile b/tolua/GNUmakefile
new file mode 100644
index 0000000..40533f0
--- /dev/null
+++ b/tolua/GNUmakefile
@@ -0,0 +1,19 @@
+# makefile for tolua hierarchy
+
+tolua:
+ cd src/lib; make all
+ cd src/bin; make all
+
+tests:
+ cd src/tests; make all
+
+all clean klean:
+ cd src/lib; make $@
+ cd src/bin; make $@
+ cd src/tests; make $@
+
+debug:
+ cd src/bin; make debug
+
+
+test: