aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2011-01-04 21:31:17 +0100
committerBenoit Germain <bnt.germain@gmail.com>2011-01-04 21:31:17 +0100
commit79e46938c5d8daf164ab2d934f668fa27b32e4cf (patch)
tree407761f25bbdc3d5b2066a705dcbcf8711690242 /Makefile
parented07b457b6b45ece85d367dc8b89bf3c040abd9a (diff)
downloadlanes-79e46938c5d8daf164ab2d934f668fa27b32e4cf.tar.gz
lanes-79e46938c5d8daf164ab2d934f668fa27b32e4cf.tar.bz2
lanes-79e46938c5d8daf164ab2d934f668fa27b32e4cf.zip
Take all code from Asko Kauppi's SVN server, and push it here so that the github repository becomes the official Lanes source codebase.
Note that Asko's SVN server holds version 2.0.9, whereas this is version 2.0.10, but I don't see any real need to update SVN if it is to become deprecated. Next steps: - upgrade the rockspec to the latest version - make the html help available online somewhere Signed-off-by: Benoit Germain <bnt.germain@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4c0ff4b..b4a78cc 100644
--- a/Makefile
+++ b/Makefile
@@ -82,6 +82,7 @@ test:
82 $(MAKE) objects 82 $(MAKE) objects
83 $(MAKE) fibonacci 83 $(MAKE) fibonacci
84 $(MAKE) recursive 84 $(MAKE) recursive
85 $(MAKE) func_is_string
85 86
86basic: tests/basic.lua $(_TARGET_SO) 87basic: tests/basic.lua $(_TARGET_SO)
87 $(_PREFIX) $(LUA) $< 88 $(_PREFIX) $(LUA) $<
@@ -143,6 +144,12 @@ finalizer: tests/finalizer.lua $(_TARGET_SO)
143error-test: tests/error.lua $(_TARGET_SO) 144error-test: tests/error.lua $(_TARGET_SO)
144 $(_PREFIX) $(LUA) $< 145 $(_PREFIX) $(LUA) $<
145 146
147appendud: tests/appendud.lua $(_TARGET_SO)
148 $(_PREFIX) $(LUA) $<
149
150func_is_string: tests/func_is_string.lua $(_TARGET_SO)
151 $(_PREFIX) $(LUA) $<
152
146#--- 153#---
147perftest-plain: tests/perftest.lua $(_TARGET_SO) 154perftest-plain: tests/perftest.lua $(_TARGET_SO)
148 $(MAKE) _perftest ARGS="$< $(N) -plain" 155 $(MAKE) _perftest ARGS="$< $(N) -plain"