diff options
-rwxr-xr-x | all | 4 | ||||
-rw-r--r-- | makefile | 1 | ||||
-rw-r--r-- | testes/libs/makefile | 11 |
3 files changed, 10 insertions, 6 deletions
@@ -1,4 +1,6 @@ | |||
1 | cd testes | 1 | make -s -j |
2 | cd testes/libs; make -s | ||
3 | cd .. # back to directory 'testes' | ||
2 | ulimit -S -s 2000 | 4 | ulimit -S -s 2000 |
3 | if { ../lua all.lua; } then | 5 | if { ../lua all.lua; } then |
4 | echo -e "\n\n final OK!!!!\n\n" | 6 | echo -e "\n\n final OK!!!!\n\n" |
@@ -90,6 +90,7 @@ ALL_O= $(CORE_O) $(LUA_O) $(LUAC_O) $(AUX_O) $(LIB_O) | |||
90 | ALL_A= $(CORE_T) | 90 | ALL_A= $(CORE_T) |
91 | 91 | ||
92 | all: $(ALL_T) | 92 | all: $(ALL_T) |
93 | touch all | ||
93 | 94 | ||
94 | o: $(ALL_O) | 95 | o: $(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 |
11 | all: lib1.so lib11.so lib2.so lib21.so lib2-v2.so | 11 | all: lib1.so lib11.so lib2.so lib21.so lib2-v2.so |
12 | touch all | ||
12 | 13 | ||
13 | lib1.so: lib1.c | 14 | lib1.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 | ||
16 | lib11.so: lib11.c | 17 | lib11.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 | ||
19 | lib2.so: lib2.c | 20 | lib2.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 | ||
22 | lib21.so: lib21.c | 23 | lib21.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 | ||
25 | lib2-v2.so: lib2.so | 26 | lib2-v2.so: lib2.so |
26 | mv lib2.so ./lib2-v2.so | 27 | cp lib2.so ./lib2-v2.so |