aboutsummaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-10-18 13:33:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-10-18 13:33:11 +0200
commit46d86ca4fdf1e3481a1d3f52c5e827faafaecc05 (patch)
tree70086b0a77368ecc40db9b6b0f1c7ed727ca9b02 /dist
parent3e39d0e02bf58ed7e867f6520ab377d86de94758 (diff)
Don't go into the tests directory in distribution
Diffstat (limited to 'dist')
-rw-r--r--dist/makefile4
-rw-r--r--dist/nmakefile4
2 files changed, 2 insertions, 6 deletions
diff --git a/dist/makefile b/dist/makefile
index f1b7a7e..6a82f3b 100644
--- a/dist/makefile
+++ b/dist/makefile
@@ -1,9 +1,5 @@
dirs := libxsde examples
-ifneq ($(filter $(MAKECMDGOALS),gen clean cleanobj),)
-dirs += tests
-endif
-
.PHONY: all $(dirs)
all: $(dirs)
diff --git a/dist/nmakefile b/dist/nmakefile
index 146acc6..575cc93 100644
--- a/dist/nmakefile
+++ b/dist/nmakefile
@@ -9,9 +9,9 @@ test:
@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile $@" || exit 1
gen:
- @for %i in ( $(dirs) tests ) do \
+ @for %i in ( $(dirs) ) do \
@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile $@" || exit 1
clean cleanobj:
- @for %i in ( $(dirs) tests ) do \
+ @for %i in ( $(dirs) ) do \
@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile $@"