diff options
-rw-r--r-- | Makefile.win | 5 |
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 | ||
3 | T= lfs | 3 | T= lfs |
4 | V= 1.2.1 | 4 | V= 1.2.1 |
@@ -10,6 +10,9 @@ OBJS= src\$T.obj | |||
10 | 10 | ||
11 | lib: src\$(LIBNAME) | 11 | lib: src\$(LIBNAME) |
12 | 12 | ||
13 | .c.obj: | ||
14 | $(CC) /c /Fo$@ $(CFLAGS) $< | ||
15 | |||
13 | src\$(LIBNAME): $(OBJS) | 16 | src\$(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 | ||