diff options
author | Benoit Germain <bnt.germain@gmail.com> | 2011-01-04 21:31:17 +0100 |
---|---|---|
committer | Benoit Germain <bnt.germain@gmail.com> | 2011-01-04 21:31:17 +0100 |
commit | 79e46938c5d8daf164ab2d934f668fa27b32e4cf (patch) | |
tree | 407761f25bbdc3d5b2066a705dcbcf8711690242 /Makefile | |
parent | ed07b457b6b45ece85d367dc8b89bf3c040abd9a (diff) | |
download | lanes-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-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 | ||
86 | basic: tests/basic.lua $(_TARGET_SO) | 87 | basic: tests/basic.lua $(_TARGET_SO) |
87 | $(_PREFIX) $(LUA) $< | 88 | $(_PREFIX) $(LUA) $< |
@@ -143,6 +144,12 @@ finalizer: tests/finalizer.lua $(_TARGET_SO) | |||
143 | error-test: tests/error.lua $(_TARGET_SO) | 144 | error-test: tests/error.lua $(_TARGET_SO) |
144 | $(_PREFIX) $(LUA) $< | 145 | $(_PREFIX) $(LUA) $< |
145 | 146 | ||
147 | appendud: tests/appendud.lua $(_TARGET_SO) | ||
148 | $(_PREFIX) $(LUA) $< | ||
149 | |||
150 | func_is_string: tests/func_is_string.lua $(_TARGET_SO) | ||
151 | $(_PREFIX) $(LUA) $< | ||
152 | |||
146 | #--- | 153 | #--- |
147 | perftest-plain: tests/perftest.lua $(_TARGET_SO) | 154 | perftest-plain: tests/perftest.lua $(_TARGET_SO) |
148 | $(MAKE) _perftest ARGS="$< $(N) -plain" | 155 | $(MAKE) _perftest ARGS="$< $(N) -plain" |