diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-10-17 12:12:45 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-10-17 12:12:45 -0200 |
commit | d80659759bcbcabf8b964356e5c9c867cd55effd (patch) | |
tree | 0b5df11f98eda46d3d2517402659f0863ef1dcab /makefile | |
parent | d24253d92f1579032c7a6a30e50bba75ca56d4fe (diff) | |
download | lua-d80659759bcbcabf8b964356e5c9c867cd55effd.tar.gz lua-d80659759bcbcabf8b964356e5c9c867cd55effd.tar.bz2 lua-d80659759bcbcabf8b964356e5c9c867cd55effd.zip |
new module luadebug.h.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ | |||
1 | # $Id: makefile,v 1.13 1995/10/04 19:19:46 roberto Exp roberto $ | 1 | # $Id: makefile,v 1.13 1995/10/09 18:51:49 roberto Exp roberto $ |
2 | 2 | ||
3 | #configuration | 3 | #configuration |
4 | 4 | ||
@@ -61,7 +61,7 @@ clear : | |||
61 | rcsclean | 61 | rcsclean |
62 | rm -f *.o | 62 | rm -f *.o |
63 | rm -f parser.c parser.h | 63 | rm -f parser.c parser.h |
64 | co lua.h lualib.h | 64 | co lua.h lualib.h luadebug.h |
65 | 65 | ||
66 | % : RCS/%,v | 66 | % : RCS/%,v |
67 | co $@ | 67 | co $@ |
@@ -72,14 +72,14 @@ func.o : func.c table.h tree.h types.h opcode.h lua.h func.h mem.h | |||
72 | hash.o : hash.c mem.h opcode.h lua.h types.h tree.h func.h hash.h table.h | 72 | hash.o : hash.c mem.h opcode.h lua.h types.h tree.h func.h hash.h table.h |
73 | inout.o : inout.c mem.h opcode.h lua.h types.h tree.h func.h hash.h inout.h \ | 73 | inout.o : inout.c mem.h opcode.h lua.h types.h tree.h func.h hash.h inout.h \ |
74 | table.h | 74 | table.h |
75 | iolib.o : iolib.c lua.h lualib.h | 75 | iolib.o : iolib.c lua.h lualib.h luadebug.h |
76 | lex.o : lex.c mem.h tree.h types.h table.h opcode.h lua.h func.h inout.h parser.h \ | 76 | lex.o : lex.c mem.h tree.h types.h table.h opcode.h lua.h func.h inout.h parser.h \ |
77 | ugly.h | 77 | ugly.h |
78 | lua.o : lua.c lua.h lualib.h | 78 | lua.o : lua.c lua.h lualib.h |
79 | mathlib.o : mathlib.c lualib.h lua.h | 79 | mathlib.o : mathlib.c lualib.h lua.h |
80 | mem.o : mem.c mem.h lua.h | 80 | mem.o : mem.c mem.h lua.h |
81 | opcode.o : opcode.c mem.h opcode.h lua.h types.h tree.h func.h hash.h inout.h \ | 81 | opcode.o : opcode.c mem.h opcode.h lua.h types.h tree.h func.h hash.h inout.h \ |
82 | table.h fallback.h | 82 | table.h fallback.h luadebug.h |
83 | parser.o : parser.c mem.h opcode.h lua.h types.h tree.h func.h hash.h inout.h \ | 83 | parser.o : parser.c mem.h opcode.h lua.h types.h tree.h func.h hash.h inout.h \ |
84 | table.h | 84 | table.h |
85 | strlib.o : strlib.c lua.h lualib.h | 85 | strlib.o : strlib.c lua.h lualib.h |