diff options
author | carregal <carregal> | 2008-02-13 22:08:31 +0000 |
---|---|---|
committer | carregal <carregal> | 2008-02-13 22:08:31 +0000 |
commit | 6c16dc46345ba294a09e9eda8f91a6ae50e38439 (patch) | |
tree | 54b62d9869b122621372b591ac76ae85108b35f8 | |
parent | dff01ac3c966c42f72f49172374edda420bcf954 (diff) | |
download | luafilesystem-6c16dc46345ba294a09e9eda8f91a6ae50e38439.tar.gz luafilesystem-6c16dc46345ba294a09e9eda8f91a6ae50e38439.tar.bz2 luafilesystem-6c16dc46345ba294a09e9eda8f91a6ae50e38439.zip |
Correcting the detection of the manifest filev1_4_0
-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 | ||