diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1993-12-22 18:55:06 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1993-12-22 18:55:06 -0200 |
commit | 856004214fdd2ee7380f423cc428b123b89786f6 (patch) | |
tree | 41d1c1aa8586622fd24f472b7f466bf1a17a8665 | |
parent | 686f09a472d2d1c1ce6506343ac91b58c55d81d3 (diff) | |
download | lua-856004214fdd2ee7380f423cc428b123b89786f6.tar.gz lua-856004214fdd2ee7380f423cc428b123b89786f6.tar.bz2 lua-856004214fdd2ee7380f423cc428b123b89786f6.zip |
modificacao para pegar arquivos de subdiretorio RCS quando necessario
-rw-r--r-- | makefile | 38 |
1 files changed, 37 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | # $Id: $ | 1 | # $Id: makefile,v 1.1 1993/12/17 18:59:10 celes Exp roberto $ |
2 | # Compilation parameters | 2 | # Compilation parameters |
3 | CC = gcc | 3 | CC = gcc |
4 | CFLAGS = -I/usr/5include -Wall -DMAXCODE=4096 -DMAXCONSTANT=1024 -DMAXSYMBOL=1024 | 4 | CFLAGS = -I/usr/5include -Wall -DMAXCODE=4096 -DMAXCONSTANT=1024 -DMAXSYMBOL=1024 |
@@ -50,3 +50,39 @@ y.tab.c : lua.stx | |||
50 | yacc -d lua.stx ; ex y.tab.c <exscript | 50 | yacc -d lua.stx ; ex y.tab.c <exscript |
51 | 51 | ||
52 | 52 | ||
53 | hash.c : RCS/hash.c,v | ||
54 | co $@ | ||
55 | hash.h : RCS/hash.h,v | ||
56 | co $@ | ||
57 | inout.c : RCS/inout.c,v | ||
58 | co $@ | ||
59 | inout.h : RCS/inout.h,v | ||
60 | co $@ | ||
61 | iolib.c : RCS/iolib.c,v | ||
62 | co $@ | ||
63 | lua.c : RCS/lua.c,v | ||
64 | co $@ | ||
65 | lua.h : RCS/lua.h,v | ||
66 | co $@ | ||
67 | lua.lex : RCS/lua.lex,v | ||
68 | co $@ | ||
69 | lua.stx : RCS/lua.stx,v | ||
70 | co $@ | ||
71 | lualib.h : RCS/lualib.h,v | ||
72 | co $@ | ||
73 | mathlib.c : RCS/mathlib.c,v | ||
74 | co $@ | ||
75 | mathlib.h : RCS/mathlib.h,v | ||
76 | co $@ | ||
77 | opcode.c : RCS/opcode.c,v | ||
78 | co $@ | ||
79 | opcode.h : RCS/opcode.h,v | ||
80 | co $@ | ||
81 | strlib.c : RCS/strlib.c,v | ||
82 | co $@ | ||
83 | strlib.h : RCS/strlib.h,v | ||
84 | co $@ | ||
85 | table.c : RCS/table.c,v | ||
86 | co $@ | ||
87 | table.h : RCS/table.h,v | ||
88 | co $@ | ||