aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-12-19 13:15:14 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-12-19 13:15:14 -0200
commit662506476b3b9bf651de064884a00c8dbce6e281 (patch)
tree5a7129e3448e7e7bc9678bc7c6185195660157e6
parent5d7dec552044303abc0d469d430c1fbec3c7b635 (diff)
downloadlua-662506476b3b9bf651de064884a00c8dbce6e281.tar.gz
lua-662506476b3b9bf651de064884a00c8dbce6e281.tar.bz2
lua-662506476b3b9bf651de064884a00c8dbce6e281.zip
'all' script automatically 'make's everything
The script 'all', to run all tests, automatically ensures that the Lua interpreter and the test C libraries (in 'testes/libs/') are updated with any changes in 'luaconf.h'.
-rwxr-xr-xall4
-rw-r--r--makefile1
-rw-r--r--testes/libs/makefile11
3 files changed, 10 insertions, 6 deletions
diff --git a/all b/all
index 12acaf36..8f78ee4d 100755
--- a/all
+++ b/all
@@ -1,4 +1,6 @@
1cd testes 1make -s -j
2cd testes/libs; make -s
3cd .. # back to directory 'testes'
2ulimit -S -s 2000 4ulimit -S -s 2000
3if { ../lua all.lua; } then 5if { ../lua all.lua; } then
4 echo -e "\n\n final OK!!!!\n\n" 6 echo -e "\n\n final OK!!!!\n\n"
diff --git a/makefile b/makefile
index 02a0814f..3bd319be 100644
--- a/makefile
+++ b/makefile
@@ -90,6 +90,7 @@ ALL_O= $(CORE_O) $(LUA_O) $(LUAC_O) $(AUX_O) $(LIB_O)
90ALL_A= $(CORE_T) 90ALL_A= $(CORE_T)
91 91
92all: $(ALL_T) 92all: $(ALL_T)
93 touch all
93 94
94o: $(ALL_O) 95o: $(ALL_O)
95 96
diff --git a/testes/libs/makefile b/testes/libs/makefile
index 9925fb00..acff4848 100644
--- a/testes/libs/makefile
+++ b/testes/libs/makefile
@@ -9,18 +9,19 @@ CFLAGS = -Wall -std=gnu99 -O2 -I$(LUA_DIR) -fPIC -shared
9 9
10# libraries used by the tests 10# libraries used by the tests
11all: lib1.so lib11.so lib2.so lib21.so lib2-v2.so 11all: lib1.so lib11.so lib2.so lib21.so lib2-v2.so
12 touch all
12 13
13lib1.so: lib1.c 14lib1.so: lib1.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/ltests.h
14 $(CC) $(CFLAGS) -o lib1.so lib1.c 15 $(CC) $(CFLAGS) -o lib1.so lib1.c
15 16
16lib11.so: lib11.c 17lib11.so: lib11.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/ltests.h
17 $(CC) $(CFLAGS) -o lib11.so lib11.c 18 $(CC) $(CFLAGS) -o lib11.so lib11.c
18 19
19lib2.so: lib2.c 20lib2.so: lib2.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/ltests.h
20 $(CC) $(CFLAGS) -o lib2.so lib2.c 21 $(CC) $(CFLAGS) -o lib2.so lib2.c
21 22
22lib21.so: lib21.c 23lib21.so: lib21.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/ltests.h
23 $(CC) $(CFLAGS) -o lib21.so lib21.c 24 $(CC) $(CFLAGS) -o lib21.so lib21.c
24 25
25lib2-v2.so: lib2.so 26lib2-v2.so: lib2.so
26 mv lib2.so ./lib2-v2.so 27 cp lib2.so ./lib2-v2.so