diff options
-rw-r--r-- | makefile | 25 |
1 files changed, 12 insertions, 13 deletions
@@ -1,4 +1,4 @@ | |||
1 | # $Id: makefile,v 1.9 1994/11/23 20:12:11 roberto Exp $ | 1 | # $Id: makefile,v 1.9 1994/11/23 20:15:04 roberto Exp roberto $ |
2 | # Compilation parameters | 2 | # Compilation parameters |
3 | CC = gcc | 3 | CC = gcc |
4 | CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 | 4 | CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 |
@@ -55,25 +55,24 @@ clear : | |||
55 | rcsclean | 55 | rcsclean |
56 | rm -f *.o | 56 | rm -f *.o |
57 | rm -f y.tab.c y.tab.h | 57 | rm -f y.tab.c y.tab.h |
58 | co lua.h lualib.h | ||
58 | 59 | ||
59 | % : RCS/%,v | 60 | % : RCS/%,v |
60 | co $@ | 61 | co $@ |
61 | 62 | ||
62 | 63 | ||
63 | fallback.o : fallback.c mem.h fallback.h opcode.h lua.h tree.h inout.h | 64 | fallback.o : fallback.c mem.h fallback.h opcode.h lua.h types.h tree.h inout.h |
64 | hash.o : hash.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h | 65 | hash.o : hash.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h |
65 | inout.o : inout.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h | 66 | inout.o : inout.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h |
66 | iolib.o : iolib.c mem.h lua.h lualib.h | 67 | iolib.o : iolib.c mem.h lua.h lualib.h |
67 | lex.o : lex.c tree.h table.h opcode.h lua.h inout.h y.tab.h ugly.h | 68 | lex.o : lex.c tree.h types.h table.h opcode.h lua.h inout.h y.tab.h ugly.h |
68 | lua.o : lua.c lua.h lualib.h | 69 | lua.o : lua.c lua.h lualib.h |
69 | make.o : make.c lua.h lualib.h | ||
70 | mathlib.o : mathlib.c lualib.h lua.h | 70 | mathlib.o : mathlib.c lualib.h lua.h |
71 | mem.o : mem.c mem.h lua.h | 71 | mem.o : mem.c mem.h lua.h |
72 | newlua.o : newlua.c lua.h lualib.h | 72 | opcode.o : opcode.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h \ |
73 | opcode.o : opcode.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h fallback.h | 73 | fallback.h |
74 | strlib.o : strlib.c mem.h lua.h lualib.h | 74 | strlib.o : strlib.c mem.h lua.h lualib.h |
75 | table.o : table.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h fallback.h | 75 | table.o : table.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h \ |
76 | temp1.o : temp1.c lua.h | 76 | fallback.h |
77 | temp2.o : temp2.c lua.h | 77 | tree.o : tree.c mem.h lua.h tree.h types.h table.h opcode.h |
78 | tree.o : tree.c mem.h lua.h tree.h table.h opcode.h | 78 | y.tab.o : y.tab.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h |
79 | y.tab.o : y.tab.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h | ||