Mercurial > hg > Members > kono > nitros9-code
view level2/makefile @ 3047:a951ab0b3003
level1 6309: Switch to native mode early in rel.asm
Otherwise it will crash in the first F$Link call.
author | Robert Gault <robert.gault@att.net> |
---|---|
date | Sat, 24 Jan 2015 23:15:55 +0100 |
parents | ab3f9eb5fc5c |
children | 22122ff8bef3 |
line wrap: on
line source
include $(NITROS9DIR)/rules.mak dirs = coco3 coco3_6309 ifdef PORTS dirs = $(PORTS) endif # Make all components all: @$(ECHO) "**************************************************" @$(ECHO) "* *" @$(ECHO) "* NitrOS-9 Level 2 Ports *" @$(ECHO) "* *" @$(ECHO) "**************************************************" $(foreach dir,$(dirs),$(MAKE) -C $(dir) &&) : # Clean all components clean: $(foreach dir, $(dirs), ($(CD) $(dir); make clean);) # Make DSK images dsk: $(foreach dir,$(dirs),$(MAKE) -C $(dir) dsk &&) : # Copy DSK images dskcopy: $(foreach dir,$(dirs),$(MAKE) -C $(dir) dskcopy &&) : # Clean DSK images dskclean: $(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);) # Info info: @$(foreach dir, $(dirs), $(MAKE) -C $(dir) info; $(ECHO);)