summaryrefslogtreecommitdiff
path: root/tolua/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2014-10-09 08:59:02 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2014-10-09 08:59:02 +0200
commit7d8b1ff684b412da292e0fc734748975188a0f10 (patch)
tree2673e3da51cc80bfc38a426048b30a4d71c31d4c /tolua/Makefile
parent62c5bb90525baf0d82c23892c2666f611750d63c (diff)
downloadcrawler-7d8b1ff684b412da292e0fc734748975188a0f10.tar.gz
crawler-7d8b1ff684b412da292e0fc734748975188a0f10.tar.bz2
first trials with a Google normalizer called from Lua, std::string is the problem currently
and the missing wrapper for the URL class also added a local 'tolua', we will have to hack it
Diffstat (limited to 'tolua/Makefile')
-rw-r--r--tolua/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/tolua/Makefile b/tolua/Makefile
new file mode 100644
index 0000000..2d5f6af
--- /dev/null
+++ b/tolua/Makefile
@@ -0,0 +1,17 @@
+# 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
+