diff options
-rw-r--r-- | Makefile.win | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.win b/Makefile.win index bc37183..8491be2 100644 --- a/Makefile.win +++ b/Makefile.win | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.win,v 1.9 2008/02/11 22:42:21 carregal Exp $ | 1 | # $Id: Makefile.win,v 1.10 2008/02/13 22:08:31 carregal Exp $ |
2 | 2 | ||
3 | T= lfs | 3 | T= lfs |
4 | V= 1.4.0 | 4 | V= 1.4.0 |
@@ -15,7 +15,7 @@ lib: src\lfs.dll | |||
15 | 15 | ||
16 | src\lfs.dll: $(OBJS) | 16 | src\lfs.dll: $(OBJS) |
17 | link /dll /def:src\$T.def /out:src\lfs.dll $(OBJS) "$(LUA_LIB)" | 17 | link /dll /def:src\$T.def /out:src\lfs.dll $(OBJS) "$(LUA_LIB)" |
18 | mt -manifest src\lfs.dll.manifest -outputresource:src\lfs.dll;2 | 18 | IF EXIST src\lfs.dll.manifest mt -manifest src\lfs.dll.manifest -outputresource:src\lfs.dll;2 |
19 | 19 | ||
20 | install: src\lfs.dll | 20 | install: src\lfs.dll |
21 | IF NOT EXIST "$(LUA_LIBDIR)" mkdir "$(LUA_LIBDIR)" | 21 | IF NOT EXIST "$(LUA_LIBDIR)" mkdir "$(LUA_LIBDIR)" |
@@ -23,3 +23,4 @@ install: src\lfs.dll | |||
23 | 23 | ||
24 | clean: | 24 | clean: |
25 | del src\lfs.dll $(OBJS) src\$T.lib src\$T.exp | 25 | del src\lfs.dll $(OBJS) src\$T.lib src\$T.exp |
26 | IF EXIST src\lfs.dll.manifest del src\lfs.dll.manifest \ No newline at end of file | ||