diff options
author | mascarenhas <mascarenhas> | 2006-12-04 18:25:24 +0000 |
---|---|---|
committer | mascarenhas <mascarenhas> | 2006-12-04 18:25:24 +0000 |
commit | c9fe48709f6ef32c61c80ead0826c94f61aee0f7 (patch) | |
tree | 69eb3c35cfcc14ba54067255cb63701194d56060 | |
parent | 57622411a9e616016de31da416ec706b27f6a8be (diff) | |
download | luafilesystem-c9fe48709f6ef32c61c80ead0826c94f61aee0f7.tar.gz luafilesystem-c9fe48709f6ef32c61c80ead0826c94f61aee0f7.tar.bz2 luafilesystem-c9fe48709f6ef32c61c80ead0826c94f61aee0f7.zip |
Windows Makefile take two
-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 | ||