summaryrefslogtreecommitdiffstats
path: root/win/makefile.bc
diff options
context:
space:
mode:
authordavygrvy <davygrvy@pobox.com>2002-02-21 22:00:58 (GMT)
committerdavygrvy <davygrvy@pobox.com>2002-02-21 22:00:58 (GMT)
commit39c08d3ba4eaad235dd50559a14a970acb1d75d8 (patch)
tree253a5528d55b9c8695a53b7e875889e8fae501e6 /win/makefile.bc
parente2574e2bfd57fbf6ec30cb0bcaf1c3c8797802f2 (diff)
downloadtcl-39c08d3ba4eaad235dd50559a14a970acb1d75d8.zip
tcl-39c08d3ba4eaad235dd50559a14a970acb1d75d8.tar.gz
tcl-39c08d3ba4eaad235dd50559a14a970acb1d75d8.tar.bz2
* win/mkd.bat (removed):
* win/coffbase.txt (new): * win/makefile.bc: * win/makefile.vc: Changed the 'setup' target to stop using the mkd.bat file and just make the directory right in the rule. Same change to makefile.bc. configure.in nor Makefile.in use it. coffbase.txt will be the master list for our "prefered base addresses" set by the linker. This should improve load-time (NT only) by avoiding relocations. Submissions to the list by extension authors are encouraged. Added a 'tidy' target to compliment 'clean' and 'hose' to remove just the outputs. Also removed the $(winlibs) macro as it wasn't being used. Stuff left to do: 1) get the winhelp target to stop building in the tools/ directory. 2) stop using rmd.bat 3) add more dependacy rules.
Diffstat (limited to 'win/makefile.bc')
-rw-r--r--win/makefile.bc6
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)