Mercurial > hg > Members > kono > nitros9-code
diff level2/coco3/makefile @ 2904:62c91ac49d72
Make the banners print what we are compiling for
Since the same makefiles are used for different ports, the banner info
must be dynamic.
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sat, 11 Jan 2014 20:56:53 +0100 |
parents | b14ea1930107 |
children | b71f67993fe0 |
line wrap: on
line diff
--- a/level2/coco3/makefile Sat Jan 11 20:12:20 2014 +0100 +++ b/level2/coco3/makefile Sat Jan 11 20:56:53 2014 +0100 @@ -2,6 +2,7 @@ CPU=6809 endif PORT = coco3 +MACHINE = Tandy Color Computer 3 include $(NITROS9DIR)/rules.mak LEVEL = 2 @@ -85,11 +86,11 @@ # Make all components all: - @$(ECHO) "**************************************************" - @$(ECHO) "* *" - @$(ECHO) "* NitrOS-9/$(CPU) Level 2 Distribution *" - @$(ECHO) "* *" - @$(ECHO) "**************************************************" + @$(ECHO) "************************************************************" + @$(ECHO) "*" + @$(ECHO) "* NitrOS-9/$(CPU) Level $(LEVEL) $(MACHINE) ($(PORT))" + @$(ECHO) "*" + @$(ECHO) "************************************************************" cd $(NITROS9DIR)/lib; make $(foreach dir, $(DIRS), ($(CD) $(dir); make);)