aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-03-05 12:57:53 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-03-05 12:57:53 -0300
commitef94999647561f4c043dc8b529618a8a1f20d51d (patch)
treebb1917034863a5c87edb61d24f2b63ac0cdb0945
parent6f30fa98d82a02a05040f7925a547067e29409d9 (diff)
downloadlua-ef94999647561f4c043dc8b529618a8a1f20d51d.tar.gz
lua-ef94999647561f4c043dc8b529618a8a1f20d51d.tar.bz2
lua-ef94999647561f4c043dc8b529618a8a1f20d51d.zip
parse.o was included twice in lua.a
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index b3971be8..60d37bef 100644
--- a/makefile
+++ b/makefile
@@ -1,4 +1,4 @@
1# $Id: makefile,v 1.19 1996/02/07 18:14:38 roberto Exp roberto $ 1# $Id: makefile,v 1.20 1996/02/13 17:30:39 roberto Exp roberto $
2 2
3#configuration 3#configuration
4 4
@@ -36,7 +36,7 @@ LIBOBJS = \
36lua : lua.o lua.a lualib.a 36lua : lua.o lua.a lualib.a
37 $(CC) $(CFLAGS) -o $@ lua.o lua.a lualib.a -lm 37 $(CC) $(CFLAGS) -o $@ lua.o lua.a lualib.a -lm
38 38
39lua.a : parser.o $(LUAOBJS) 39lua.a : $(LUAOBJS)
40 $(AR) $(ARFLAGS) $@ $? 40 $(AR) $(ARFLAGS) $@ $?
41 ranlib lua.a 41 ranlib lua.a
42 42