aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.win5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.win b/Makefile.win
index 155b548..339e1d0 100644
--- a/Makefile.win
+++ b/Makefile.win
@@ -1,4 +1,4 @@
1# $Id: Makefile.win,v 1.2 2006/12/04 18:24:18 mascarenhas Exp $ 1# $Id: Makefile.win,v 1.3 2006/12/04 18:25:24 mascarenhas Exp $
2 2
3T= lfs 3T= lfs
4V= 1.2.1 4V= 1.2.1
@@ -10,6 +10,9 @@ OBJS= src\$T.obj
10 10
11lib: src\$(LIBNAME) 11lib: src\$(LIBNAME)
12 12
13.c.obj:
14 $(CC) /c /Fo$@ $(CFLAGS) $<
15
13src\$(LIBNAME): $(OBJS) 16src\$(LIBNAME): $(OBJS)
14 link /dll /def:src\$T.def /out:src\$(LIBNAME) $(OBJS) $(LUA_LIB) 17 link /dll /def:src\$T.def /out:src\$(LIBNAME) $(OBJS) $(LUA_LIB)
15 18