diff options
author | alcoheca <alcoheca@svn> | 2010-03-26 13:35:35 +0000 |
---|---|---|
committer | alcoheca <alcoheca@svn> | 2010-03-26 13:35:35 +0000 |
commit | b632a42d5cacdda7bb07a3fee995a4f0de1deba9 (patch) | |
tree | b174ecd7ce4830785293fa6d18ab65d30c0cc375 /lib/cpluff/examples/nmakedir.bat | |
parent | 5ccef76d00e1dc22d6ae5d1c08172630f5972e58 (diff) |
copied cpluff-0.1.3 from vendor branch
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@28834 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'lib/cpluff/examples/nmakedir.bat')
-rwxr-xr-x | lib/cpluff/examples/nmakedir.bat | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/cpluff/examples/nmakedir.bat b/lib/cpluff/examples/nmakedir.bat new file mode 100755 index 0000000000..34567c226c --- /dev/null +++ b/lib/cpluff/examples/nmakedir.bat @@ -0,0 +1,11 @@ +@REM C-Pluff examples build system for MSVC
+@REM Copyright 2007 Johannes Lehtinen
+@REM This file is free software; Johannes Lehtinen gives unlimited permission
+@REM to copy, distribute and modify it.
+
+@echo Making %2 in %1
+@cd %1
+@for /f "" %%d in ('cd') do @echo Entering directory %%d
+@nmake /nologo /f Makefile.nmake %2
+@for /f "" %%d in ('cd') do @echo Leaving directory %%d
+@cd ..
|