From 1301b1cc15517c4bf28276beca85a8db26156f42 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Mon, 16 May 2011 22:31:58 -0400 Subject: [PATCH] extend windows build system for additional subdirs Permit an additional level of subdirectory depth in the Windows build system Change-Id: I2d248d3e917e13457ca135c4a221d723643159fa --- windows/NTMakefile.w32 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/NTMakefile.w32 b/windows/NTMakefile.w32 index b5cff7f6c..8079c7886 100644 --- a/windows/NTMakefile.w32 +++ b/windows/NTMakefile.w32 @@ -55,6 +55,8 @@ SRC=$(MAKEDIR)\.. SRC=$(MAKEDIR)\..\.. !elseif exist($(MAKEDIR)\..\..\..\windows\NTMakefile.w32) SRC=$(MAKEDIR)\..\..\.. +!elseif exist($(MAKEDIR)\..\..\..\..\windows\NTMakefile.w32) +SRC=$(MAKEDIR)\..\..\..\.. !else ! error Cant determine source directory !endif -- 2.11.4.GIT