lua

A copy of the Lua development repository
Log | Files | Refs | README

commit ef94999647561f4c043dc8b529618a8a1f20d51d
parent 6f30fa98d82a02a05040f7925a547067e29409d9
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue,  5 Mar 1996 12:57:33 -0300

parse.o was included twice in lua.a

Diffstat:
Mmakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/makefile b/makefile @@ -1,4 +1,4 @@ -# $Id: makefile,v 1.19 1996/02/07 18:14:38 roberto Exp roberto $ +# $Id: makefile,v 1.20 1996/02/13 17:30:39 roberto Exp roberto $ #configuration @@ -36,7 +36,7 @@ LIBOBJS = \ lua : lua.o lua.a lualib.a $(CC) $(CFLAGS) -o $@ lua.o lua.a lualib.a -lm -lua.a : parser.o $(LUAOBJS) +lua.a : $(LUAOBJS) $(AR) $(ARFLAGS) $@ $? ranlib lua.a