From 2b45f8967c459154f0d893c94b069dba182dec00 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 17 Oct 1995 16:16:58 -0200 Subject: small bug --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 6898891e..93e484ab 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -# $Id: makefile,v 1.13 1995/10/09 18:51:49 roberto Exp roberto $ +# $Id: makefile,v 1.14 1995/10/17 14:12:45 roberto Exp $ #configuration @@ -37,7 +37,7 @@ LUAOBJS = $(LUAMOD:%=%.o) LIBOBJS = $(LIBMOD:%=%.o) lua : lua.o lua.a lualib.a - $(CC) $(CFLAGS) -o $@ lua.c lua.a lualib.a -lm + $(CC) $(CFLAGS) -o $@ lua.o lua.a lualib.a -lm lua.a : parser.c $(LUAOBJS) $(AR) $(ARFLAGS) $@ $? -- cgit v1.2.3-55-g6feb