From 25f8aa1936ecdb30abe6b7d87744dd2f6ea1c3d0 Mon Sep 17 00:00:00 2001 From: mascarenhas Date: Wed, 23 Jan 2008 02:50:08 +0000 Subject: makefile.win tweak --- Makefile.win | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.win b/Makefile.win index 9e8f6fc..1fcd921 100644 --- a/Makefile.win +++ b/Makefile.win @@ -1,4 +1,4 @@ -# $Id: Makefile.win,v 1.7 2008/01/23 02:48:47 mascarenhas Exp $ +# $Id: Makefile.win,v 1.8 2008/01/23 02:50:08 mascarenhas Exp $ T= lfs V= 1.3.0 @@ -14,12 +14,12 @@ lib: src\lfs.dll $(CC) /c /Fo$@ $(CFLAGS) $< src\lfs.dll: $(OBJS) - link /dll /def:src\$T.def /out:src\lfs.dll $(OBJS) $(LUA_LIB) + link /dll /def:src\$T.def /out:src\lfs.dll $(OBJS) "$(LUA_LIB)" mt -manifest src\lfs.dll.manifest -outputresource:src\lfs.dll;2 install: src\lfs.dll - IF NOT EXIST $(LUA_LIBDIR) mkdir $(LUA_LIBDIR) - copy src\lfs.dll $(LUA_LIBDIR) + IF NOT EXIST "$(LUA_LIBDIR)" mkdir "$(LUA_LIBDIR)" + copy src\lfs.dll "$(LUA_LIBDIR)" clean: del src\lfs.dll $(OBJS) src\$T.lib src\$T.exp -- cgit v1.2.3-55-g6feb