summaryrefslogtreecommitdiff
path: root/builds/detect.mk
diff options
context:
space:
mode:
Diffstat (limited to 'builds/detect.mk')
-rw-r--r--builds/detect.mk23
1 files changed, 13 insertions, 10 deletions
diff --git a/builds/detect.mk b/builds/detect.mk
index eaf1ddec5..fbd85d5c5 100644
--- a/builds/detect.mk
+++ b/builds/detect.mk
@@ -131,22 +131,25 @@ std_setup:
@echo ""
@$(COPY) $(CONFIG_RULES) $(CONFIG_MK)
+
+# special case for Dos, Windows, OS/2, where echo "" doesn't work correctly !!
+#
dos_setup:
- @echo ˙
+ @type builds\newline
@echo $(PROJECT_TITLE) build system -- automatic system detection
- @echo ˙
+ @type builds\newline
@echo The following settings are used:
- @echo ˙
- @echo ˙˙platform˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙$(PLATFORM)
- @echo ˙˙compiler˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙$(CC)
- @echo ˙˙configuration directory˙˙˙˙˙˙$(BUILD)
- @echo ˙˙configuration rules˙˙˙˙˙˙˙˙˙˙$(CONFIG_RULES)
- @echo ˙
+ @type builds\newline
+ @echo platform˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙$(PLATFORM)
+ @echo compiler˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙$(CC)
+ @echo configuration directory˙˙˙˙˙˙$(BUILD)
+ @echo configuration rules˙˙˙˙˙˙˙˙˙˙$(CONFIG_RULES)
+ @type builds\newline
@echo If this does not correspond to your system or settings please remove the file
@echo '$(CONFIG_MK)' from this directory then read the INSTALL file for help.
- @echo ˙
+ @type builds\newline
@echo Otherwise, simply type 'make' again to build the library.
- @echo ˙
+ @type builds\newline
@$(COPY) $(subst /,\,$(CONFIG_RULES) $(CONFIG_MK)) > nul
# EOF