aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-10-17 16:16:58 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-10-17 16:16:58 -0200
commit2b45f8967c459154f0d893c94b069dba182dec00 (patch)
treef1b523b38cc3d7c117e5b80d3d1a0d988a261588
parenta66404aca612b68def99db6c7daba549a8bba4b8 (diff)
downloadlua-2b45f8967c459154f0d893c94b069dba182dec00.tar.gz
lua-2b45f8967c459154f0d893c94b069dba182dec00.tar.bz2
lua-2b45f8967c459154f0d893c94b069dba182dec00.zip
small bug
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 6898891e..93e484ab 100644
--- a/makefile
+++ b/makefile
@@ -1,4 +1,4 @@
1# $Id: makefile,v 1.13 1995/10/09 18:51:49 roberto Exp roberto $ 1# $Id: makefile,v 1.14 1995/10/17 14:12:45 roberto Exp $
2 2
3#configuration 3#configuration
4 4
@@ -37,7 +37,7 @@ LUAOBJS = $(LUAMOD:%=%.o)
37LIBOBJS = $(LIBMOD:%=%.o) 37LIBOBJS = $(LIBMOD:%=%.o)
38 38
39lua : lua.o lua.a lualib.a 39lua : lua.o lua.a lualib.a
40 $(CC) $(CFLAGS) -o $@ lua.c lua.a lualib.a -lm 40 $(CC) $(CFLAGS) -o $@ lua.o lua.a lualib.a -lm
41 41
42lua.a : parser.c $(LUAOBJS) 42lua.a : parser.c $(LUAOBJS)
43 $(AR) $(ARFLAGS) $@ $? 43 $(AR) $(ARFLAGS) $@ $?