aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormascarenhas <mascarenhas>2006-12-04 18:25:24 +0000
committermascarenhas <mascarenhas>2006-12-04 18:25:24 +0000
commitc9fe48709f6ef32c61c80ead0826c94f61aee0f7 (patch)
tree69eb3c35cfcc14ba54067255cb63701194d56060
parent57622411a9e616016de31da416ec706b27f6a8be (diff)
downloadluafilesystem-c9fe48709f6ef32c61c80ead0826c94f61aee0f7.tar.gz
luafilesystem-c9fe48709f6ef32c61c80ead0826c94f61aee0f7.tar.bz2
luafilesystem-c9fe48709f6ef32c61c80ead0826c94f61aee0f7.zip
Windows Makefile take two
-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