Mercurial > hg > Members > kono > nitros9-code
comparison 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 |
comparison
equal
deleted
inserted
replaced
2903:d76362b779c0 | 2904:62c91ac49d72 |
---|---|
1 ifeq ($(CPU),) | 1 ifeq ($(CPU),) |
2 CPU=6809 | 2 CPU=6809 |
3 endif | 3 endif |
4 PORT = coco3 | 4 PORT = coco3 |
5 MACHINE = Tandy Color Computer 3 | |
5 include $(NITROS9DIR)/rules.mak | 6 include $(NITROS9DIR)/rules.mak |
6 | 7 |
7 LEVEL = 2 | 8 LEVEL = 2 |
8 | 9 |
9 DISTRO = $(CPU)L$(LEVEL) | 10 DISTRO = $(CPU)L$(LEVEL) |
83 $(LDSKBECKER) $(LDSKARDUINO) $(LDSKBECKERHEADLESS) \ | 84 $(LDSKBECKER) $(LDSKARDUINO) $(LDSKBECKERHEADLESS) \ |
84 $(LDSKARDUINOHEADLESS) $(LDSKCOCOSDC) | 85 $(LDSKARDUINOHEADLESS) $(LDSKCOCOSDC) |
85 | 86 |
86 # Make all components | 87 # Make all components |
87 all: | 88 all: |
88 @$(ECHO) "**************************************************" | 89 @$(ECHO) "************************************************************" |
89 @$(ECHO) "* *" | 90 @$(ECHO) "*" |
90 @$(ECHO) "* NitrOS-9/$(CPU) Level 2 Distribution *" | 91 @$(ECHO) "* NitrOS-9/$(CPU) Level $(LEVEL) $(MACHINE) ($(PORT))" |
91 @$(ECHO) "* *" | 92 @$(ECHO) "*" |
92 @$(ECHO) "**************************************************" | 93 @$(ECHO) "************************************************************" |
93 cd $(NITROS9DIR)/lib; make | 94 cd $(NITROS9DIR)/lib; make |
94 $(foreach dir, $(DIRS), ($(CD) $(dir); make);) | 95 $(foreach dir, $(DIRS), ($(CD) $(dir); make);) |
95 | 96 |
96 # Clean all components | 97 # Clean all components |
97 clean: dskclean | 98 clean: dskclean |