summaryrefslogtreecommitdiff
path: root/testes/libs
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 /testes/libs
parent5d7dec552044303abc0d469d430c1fbec3c7b635 (diff)
downloadlua-github-662506476b3b9bf651de064884a00c8dbce6e281.tar.gz
'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'.
Diffstat (limited to 'testes/libs')
-rw-r--r--testes/libs/makefile11
1 files changed, 6 insertions, 5 deletions
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
# libraries used by the tests
all: lib1.so lib11.so lib2.so lib21.so lib2-v2.so
+ touch all
-lib1.so: lib1.c
+lib1.so: lib1.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/ltests.h
$(CC) $(CFLAGS) -o lib1.so lib1.c
-lib11.so: lib11.c
+lib11.so: lib11.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/ltests.h
$(CC) $(CFLAGS) -o lib11.so lib11.c
-lib2.so: lib2.c
+lib2.so: lib2.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/ltests.h
$(CC) $(CFLAGS) -o lib2.so lib2.c
-lib21.so: lib21.c
+lib21.so: lib21.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/ltests.h
$(CC) $(CFLAGS) -o lib21.so lib21.c
lib2-v2.so: lib2.so
- mv lib2.so ./lib2-v2.so
+ cp lib2.so ./lib2-v2.so