aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f27404a..ddd8675 100644
--- a/Makefile
+++ b/Makefile
@@ -84,6 +84,7 @@ test:
84 $(MAKE) fibonacci 84 $(MAKE) fibonacci
85 $(MAKE) recursive 85 $(MAKE) recursive
86 $(MAKE) func_is_string 86 $(MAKE) func_is_string
87 $(MAKE) atexit
87 88
88basic: tests/basic.lua $(_TARGET_SO) 89basic: tests/basic.lua $(_TARGET_SO)
89 $(_PREFIX) $(LUA) $< 90 $(_PREFIX) $(LUA) $<
@@ -154,6 +155,9 @@ appendud: tests/appendud.lua $(_TARGET_SO)
154func_is_string: tests/func_is_string.lua $(_TARGET_SO) 155func_is_string: tests/func_is_string.lua $(_TARGET_SO)
155 $(_PREFIX) $(LUA) $< 156 $(_PREFIX) $(LUA) $<
156 157
158atexit: tests/atexit.lua $(_TARGET_SO)
159 $(_PREFIX) $(LUA) $<
160
157#--- 161#---
158perftest-plain: tests/perftest.lua $(_TARGET_SO) 162perftest-plain: tests/perftest.lua $(_TARGET_SO)
159 $(MAKE) _perftest ARGS="$< $(N) -plain" 163 $(MAKE) _perftest ARGS="$< $(N) -plain"