diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-12-23 11:30:07 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-12-23 11:30:07 -0300 |
commit | 140cdcced5e28bde7a89e88fcae428f318565f1d (patch) | |
tree | 6b37c8be48d28b7e581c25f9e443d32060100c83 | |
parent | 7d4c7ae2af686df4a9f3cc0c6110986d886d55e6 (diff) | |
parent | 0825cf237d9d3505155f8b40bcf83ea1b135e8da (diff) | |
download | lua-140cdcced5e28bde7a89e88fcae428f318565f1d.tar.gz lua-140cdcced5e28bde7a89e88fcae428f318565f1d.tar.bz2 lua-140cdcced5e28bde7a89e88fcae428f318565f1d.zip |
Merge branch 'master' into nextversion
-rw-r--r-- | testes/libs/makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testes/libs/makefile b/testes/libs/makefile index a1330920..9c0c4e3f 100644 --- a/testes/libs/makefile +++ b/testes/libs/makefile | |||
@@ -11,17 +11,17 @@ CFLAGS = -Wall -std=gnu99 -O2 -I$(LUA_DIR) -fPIC -shared | |||
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 | touch all |
13 | 13 | ||
14 | lib1.so: lib1.c $(LUA_DIR)/luaconf.h | 14 | lib1.so: lib1.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/lua.h |
15 | $(CC) $(CFLAGS) -o lib1.so lib1.c | 15 | $(CC) $(CFLAGS) -o lib1.so lib1.c |
16 | 16 | ||
17 | lib11.so: lib11.c $(LUA_DIR)/luaconf.h | 17 | lib11.so: lib11.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/lua.h |
18 | $(CC) $(CFLAGS) -o lib11.so lib11.c | 18 | $(CC) $(CFLAGS) -o lib11.so lib11.c |
19 | 19 | ||
20 | lib2.so: lib2.c $(LUA_DIR)/luaconf.h | 20 | lib2.so: lib2.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/lua.h |
21 | $(CC) $(CFLAGS) -o lib2.so lib2.c | 21 | $(CC) $(CFLAGS) -o lib2.so lib2.c |
22 | 22 | ||
23 | lib21.so: lib21.c $(LUA_DIR)/luaconf.h | 23 | lib21.so: lib21.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/lua.h |
24 | $(CC) $(CFLAGS) -o lib21.so lib21.c | 24 | $(CC) $(CFLAGS) -o lib21.so lib21.c |
25 | 25 | ||
26 | lib2-v2.so: lib21.c $(LUA_DIR)/luaconf.h | 26 | lib2-v2.so: lib21.c $(LUA_DIR)/luaconf.h $(LUA_DIR)/lua.h |
27 | $(CC) $(CFLAGS) -o lib2-v2.so lib22.c | 27 | $(CC) $(CFLAGS) -o lib2-v2.so lib22.c |