diff options
author | mascarenhas <mascarenhas> | 2008-01-23 01:58:25 +0000 |
---|---|---|
committer | mascarenhas <mascarenhas> | 2008-01-23 01:58:25 +0000 |
commit | d219de7885384cecdef3da5dd90939d7676c0930 (patch) | |
tree | 714cd649d5469d146e15895c7155298b0e0b7af6 | |
parent | ed97af80fb6ec7aad7c06177d20b72f9ef19052a (diff) | |
download | luafilesystem-d219de7885384cecdef3da5dd90939d7676c0930.tar.gz luafilesystem-d219de7885384cecdef3da5dd90939d7676c0930.tar.bz2 luafilesystem-d219de7885384cecdef3da5dd90939d7676c0930.zip |
added flag to supress manifest creation
-rw-r--r-- | Makefile.win | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.win b/Makefile.win index 5a804d0..aeff54a 100644 --- a/Makefile.win +++ b/Makefile.win | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.win,v 1.5 2007/08/30 14:38:07 tomas Exp $ | 1 | # $Id: Makefile.win,v 1.6 2008/01/23 01:58:25 mascarenhas Exp $ |
2 | 2 | ||
3 | T= lfs | 3 | T= lfs |
4 | V= 1.3.0 | 4 | V= 1.3.0 |
@@ -14,7 +14,7 @@ lib: src\$(LIBNAME) | |||
14 | $(CC) /c /Fo$@ $(CFLAGS) $< | 14 | $(CC) /c /Fo$@ $(CFLAGS) $< |
15 | 15 | ||
16 | src\$(LIBNAME): $(OBJS) | 16 | src\$(LIBNAME): $(OBJS) |
17 | link /dll /def:src\$T.def /out:src\$(LIBNAME) $(OBJS) $(LUA_LIB) | 17 | link /manifest:no /dll /def:src\$T.def /out:src\$(LIBNAME) $(OBJS) $(LUA_LIB) |
18 | 18 | ||
19 | install: src\$(LIBNAME) | 19 | install: src\$(LIBNAME) |
20 | IF NOT EXIST $(LUA_LIBDIR) mkdir $(LUA_LIBDIR) | 20 | IF NOT EXIST $(LUA_LIBDIR) mkdir $(LUA_LIBDIR) |