diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-04-06 11:08:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-04-06 11:08:08 -0300 |
commit | 3a9516ffc8de0d33051f83dc786dba615d6bac49 (patch) | |
tree | 9608796ca5abb4a724d70d99cb34dd818eb95662 /makefile | |
parent | 42fa305649199712aad1c96beadb944b01277e3f (diff) | |
download | lua-3a9516ffc8de0d33051f83dc786dba615d6bac49.tar.gz lua-3a9516ffc8de0d33051f83dc786dba615d6bac49.tar.bz2 lua-3a9516ffc8de0d33051f83dc786dba615d6bac49.zip |
luaL check functions do not need the function name (it can be
accessed via luadebug interface).
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ | |||
1 | # $Id: makefile,v 1.31 1997/03/31 14:23:49 roberto Exp roberto $ | 1 | # $Id: makefile,v 1.32 1997/03/31 20:58:42 roberto Exp roberto $ |
2 | 2 | ||
3 | #configuration | 3 | #configuration |
4 | 4 | ||
@@ -83,7 +83,7 @@ fallback.o: fallback.c auxlib.h lua.h luamem.h fallback.h opcode.h \ | |||
83 | func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \ | 83 | func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \ |
84 | luamem.h | 84 | luamem.h |
85 | hash.o: hash.c luamem.h opcode.h lua.h types.h tree.h func.h hash.h \ | 85 | hash.o: hash.c luamem.h opcode.h lua.h types.h tree.h func.h hash.h \ |
86 | table.h | 86 | table.h auxlib.h |
87 | inout.o: inout.c auxlib.h lua.h lex.h opcode.h types.h tree.h func.h \ | 87 | inout.o: inout.c auxlib.h lua.h lex.h opcode.h types.h tree.h func.h \ |
88 | inout.h table.h hash.h luamem.h fallback.h | 88 | inout.h table.h hash.h luamem.h fallback.h |
89 | iolib.o: iolib.c lua.h auxlib.h luadebug.h lualib.h | 89 | iolib.o: iolib.c lua.h auxlib.h luadebug.h lualib.h |
@@ -93,12 +93,12 @@ lua.o: lua.c lua.h lualib.h | |||
93 | luamem.o: luamem.c luamem.h lua.h | 93 | luamem.o: luamem.c luamem.h lua.h |
94 | mathlib.o: mathlib.c lualib.h lua.h auxlib.h | 94 | mathlib.o: mathlib.c lualib.h lua.h auxlib.h |
95 | opcode.o: opcode.c luadebug.h lua.h luamem.h opcode.h types.h tree.h \ | 95 | opcode.o: opcode.c luadebug.h lua.h luamem.h opcode.h types.h tree.h \ |
96 | func.h hash.h inout.h table.h fallback.h undump.h | 96 | func.h hash.h inout.h table.h fallback.h undump.h auxlib.h |
97 | parser.o: parser.c luadebug.h lua.h luamem.h lex.h opcode.h types.h \ | 97 | parser.o: parser.c luadebug.h lua.h luamem.h lex.h opcode.h types.h \ |
98 | tree.h func.h hash.h inout.h table.h | 98 | tree.h func.h hash.h inout.h table.h |
99 | strlib.o: strlib.c lua.h auxlib.h lualib.h | 99 | strlib.o: strlib.c lua.h auxlib.h lualib.h |
100 | table.o: table.c luamem.h opcode.h lua.h types.h tree.h func.h hash.h \ | 100 | table.o: table.c luamem.h auxlib.h lua.h opcode.h types.h tree.h \ |
101 | table.h inout.h fallback.h luadebug.h | 101 | func.h hash.h table.h inout.h fallback.h luadebug.h |
102 | tree.o: tree.c luamem.h lua.h tree.h types.h lex.h hash.h opcode.h \ | 102 | tree.o: tree.c luamem.h lua.h tree.h types.h lex.h hash.h opcode.h \ |
103 | func.h table.h fallback.h | 103 | func.h table.h fallback.h |
104 | undump.o: undump.c opcode.h lua.h types.h tree.h func.h luamem.h \ | 104 | undump.o: undump.c opcode.h lua.h types.h tree.h func.h luamem.h \ |