diff options
Diffstat (limited to 'win/makefile.bc')
-rw-r--r-- | win/makefile.bc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/win/makefile.bc b/win/makefile.bc index ff1093b..2a3eb21 100644 --- a/win/makefile.bc +++ b/win/makefile.bc @@ -321,8 +321,10 @@ test: setup $(TCLTEST) dlls $(CAT32) $(TCLTEST) $(ROOT)/tests/all.tcl setup: - @$(MKDIR) $(TMPDIR) - @$(MKDIR) $(OUTDIR) + @if not exist $(OUT_DIR)\nul mkdir $(OUT_DIR) &\ + echo *** Created directory '$(OUT_DIR)' + @if not exist $(TMP_DIR)\nul mkdir $(TMP_DIR) &\ + echo *** Created directory '$(TMP_DIR)' $(TCLLIB): $(TCLDLL) |