Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / service / protocol-plugin / lib / cpluff / examples / nmakedir.bat
1 @REM C-Pluff examples build system for MSVC
2 @REM Copyright 2007 Johannes Lehtinen
3 @REM This file is free software; Johannes Lehtinen gives unlimited permission
4 @REM to copy, distribute and modify it.
5
6 @echo Making %2 in %1
7 @cd %1
8 @for /f "" %%d in ('cd') do @echo Entering directory %%d
9 @nmake /nologo /f Makefile.nmake %2
10 @for /f "" %%d in ('cd') do @echo Leaving directory %%d
11 @cd ..