From adaa36dbec1ce9aaafd61873b9d3d898a8c240cf Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Thu, 11 Apr 2024 15:14:52 +0200 Subject: Bring all interesting fixes from the C++ implementation back into the C implementation --- Makefile | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1e9f70e..08888e4 100644 --- a/Makefile +++ b/Makefile @@ -72,25 +72,25 @@ rock: #--- Testing --- # test: - $(MAKE) errhangtest - $(MAKE) irayo_recursive - $(MAKE) irayo_closure + $(MAKE) atexit + $(MAKE) atomic $(MAKE) basic $(MAKE) cancel - $(MAKE) fifo - $(MAKE) keeper - $(MAKE) timer - $(MAKE) atomic $(MAKE) cyclic - $(MAKE) objects + $(MAKE) errhangtest $(MAKE) fibonacci - $(MAKE) recursive + $(MAKE) fifo $(MAKE) func_is_string - $(MAKE) atexit + $(MAKE) irayo_closure + $(MAKE) irayo_recursive + $(MAKE) keeper $(MAKE) linda_perf - $(MAKE) rupval + $(MAKE) objects $(MAKE) package $(MAKE) pingpong + $(MAKE) recursive + $(MAKE) rupval + $(MAKE) timer basic: tests/basic.lua $(_TARGET_SO) $(_PREFIX) $(LUA) $< @@ -104,8 +104,8 @@ cancel: tests/cancel.lua $(_TARGET_SO) REP_ARGS=-llanes -e "print'say aaa'; for i=1,10 do print(i) end" repetitive: $(_TARGET_SO) for i in 1 2 3 4 5 6 7 8 9 10 a b c d e f g h i j k l m n o p q r s t u v w x y z; \ - do $(_PREFIX) $(LUA) $(REP_ARGS); \ - done + do $(_PREFIX) $(LUA) $(REP_ARGS); \ + done repetitive1: $(_TARGET_SO) $(_PREFIX) $(LUA) $(REP_ARGS) @@ -236,9 +236,9 @@ else -rm -rf $(MODULE)-$(VERSION) mkdir $(MODULE)-$(VERSION) tar c * --exclude=.svn --exclude=.DS_Store --exclude="_*" \ - --exclude="*.tgz" --exclude="*.rockspec" \ - --exclude=lanes.dev --exclude="$(MODULE)-*" --exclude=xcode \ - --exclude="*.obj" --exclude="*.dll" --exclude=timeit.dat \ + --exclude="*.tgz" --exclude="*.rockspec" \ + --exclude=lanes.dev --exclude="$(MODULE)-*" --exclude=xcode \ + --exclude="*.obj" --exclude="*.dll" --exclude=timeit.dat \ | (cd $(MODULE)-$(VERSION) && tar x) tar czvf $(MODULE)-$(VERSION).tgz $(MODULE)-$(VERSION) rm -rf $(MODULE)-$(VERSION) -- cgit v1.2.3-55-g6feb