aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-05-29 12:10:05 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-05-29 12:10:05 +0200
commit5890678289e28cc9e666c1dda8265712bd27ac03 (patch)
tree1e5104f5d6e740573066b9df9fa498e27b79e01e /Makefile
parentd9400c00c05590e0d0e40e6775dc338d28b92f14 (diff)
downloadlanes-5890678289e28cc9e666c1dda8265712bd27ac03.tar.gz
lanes-5890678289e28cc9e666c1dda8265712bd27ac03.tar.bz2
lanes-5890678289e28cc9e666c1dda8265712bd27ac03.zip
Fix lanes.lua dependency on "io"
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 4 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 52f4976..e81c12a 100644
--- a/Makefile
+++ b/Makefile
@@ -95,6 +95,7 @@ test:
95 $(MAKE) package 95 $(MAKE) package
96 $(MAKE) pingpong 96 $(MAKE) pingpong
97 $(MAKE) recursive 97 $(MAKE) recursive
98 $(MAKE) require
98 $(MAKE) rupval 99 $(MAKE) rupval
99 $(MAKE) timer 100 $(MAKE) timer
100 $(MAKE) track_lanes 101 $(MAKE) track_lanes
@@ -189,6 +190,9 @@ pingpong: tests/pingpong.lua $(_TARGET_SO)
189recursive: tests/recursive.lua $(_TARGET_SO) 190recursive: tests/recursive.lua $(_TARGET_SO)
190 $(_PREFIX) $(LUA) $< 191 $(_PREFIX) $(LUA) $<
191 192
193require: tests/require.lua $(_TARGET_SO)
194 $(_PREFIX) $(LUA) $<
195
192rupval: tests/rupval.lua $(_TARGET_SO) 196rupval: tests/rupval.lua $(_TARGET_SO)
193 $(_PREFIX) $(LUA) $< 197 $(_PREFIX) $(LUA) $<
194 198
@@ -209,15 +213,6 @@ repetitive: $(_TARGET_SO)
209repetitive1: $(_TARGET_SO) 213repetitive1: $(_TARGET_SO)
210 $(_PREFIX) $(LUA) $(REP_ARGS) 214 $(_PREFIX) $(LUA) $(REP_ARGS)
211 215
212#require: tests/require.lua $(_TARGET_SO)
213# $(_PREFIX) $(LUA) $<
214
215rupval: tests/rupval.lua $(_TARGET_SO)
216 $(_PREFIX) $(LUA) $<
217
218timer: tests/timer.lua $(_TARGET_SO)
219 $(_PREFIX) $(LUA) $<
220
221#--- 216#---
222#--- 217#---
223_perftest: 218_perftest: