aboutsummaryrefslogtreecommitdiff
path: root/dist/libxsde
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-10-21 12:38:19 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-10-21 12:38:19 +0200
commit04579ecc3a70ecf52418110cdaef92663be55dcb (patch)
tree89c35aee3dd55c664c020ae2cd1e7da0c7557401 /dist/libxsde
parent4b65a4d2d14b40a82335c372da91bdfc4ab5b11e (diff)
nmakefile build system improvements
Print the directory name being entered. Stop after first failure.
Diffstat (limited to 'dist/libxsde')
-rw-r--r--dist/libxsde/nmakefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/dist/libxsde/nmakefile b/dist/libxsde/nmakefile
index aad7031..c8402d2 100644
--- a/dist/libxsde/nmakefile
+++ b/dist/libxsde/nmakefile
@@ -2,8 +2,12 @@ dirs = xsde
all:
@for %i in ( $(dirs) ) do \
-@cmd /c "cd %i & $(MAKE) /nologo /f nmakefile"
+@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile" || exit 1
-gen test clean cleanobj:
+gen test:
@for %i in ( $(dirs) ) do \
-@cmd /c "cd %i & $(MAKE) /nologo /f nmakefile $@"
+@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile $@" || exit 1
+
+clean cleanobj:
+ @for %i in ( $(dirs) ) do \
+@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile $@"