view level1/makefile @ 2691:678c6848dc12 lwtools-port

Fixed coco2/coco2b makefiles to depend on coco1 makefiles
author Boisy Pitre <boisy.pitre@nuance.com>
date Thu, 19 Jul 2012 13:54:05 -0500
parents 6e40b043d3e0
children 15cebc86f723
line wrap: on
line source

include $(NITROS9DIR)/rules.mak

dirs	= coco1 coco2 tano d64 dalpha atari

# Make all components
all:
	@$(ECHO) "**************************************************"
	@$(ECHO) "*                                                *"
	@$(ECHO) "*             NitrOS-9 Level 1 Ports             *"
	@$(ECHO) "*                                                *"
	@$(ECHO) "**************************************************"
	$(foreach dir, $(dirs), ($(CD) $(dir); make);)

# Clean all components
clean:
	$(foreach dir, $(dirs), ($(CD) $(dir); make clean);)

# Make DSK images
dsk:
	$(foreach dir, $(dirs), ($(CD) $(dir); make dsk);)

# Copy DSK images
dskcopy:
	$(foreach dir, $(dirs), ($(CD) $(dir); make dskcopy);)

# Clean DSK images
dskclean:
	$(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);)

# Info
info:
	@$(foreach dir, $(dirs), ($(CD) $(dir); make info; $(ECHO));)