summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) $@ $?