aboutsummaryrefslogtreecommitdiff
path: root/lib/cpluff/examples/nmakedir.bat
blob: 34567c226c79e54a6a897857e164d5d07dcdcf96 (plain)
1
2
3
4
5
6
7
8
9
10
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 ..