view level1/makefile @ 2791:0df4a4590bc6 lwtools-port

Updated level2/coco3/cmds/makefile to set correct lib file based on H6309 tag. Updated level2/coco3/cmds/makefile to detect if H6309 is present and if so to use the sys6309l2.a lib file and if the value is not set then use sys6809l2.a lib file.
author drencor-xeen
date Sun, 27 Jan 2013 10:41:30 -0600
parents 15cebc86f723
children 4ffb283f6233
line wrap: on
line source

include $(NITROS9DIR)/rules.mak

dirs	= coco1 coco2 coco2b 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));)