view level2/makefile @ 2665:ead8a007432b lwtools-port

Fix duplicate symbol definition MPI.Slct is already defined using SET at some point. Replace the EQU statement with SET statement to eliminate duplicate defininition error.
author William Astle <lost@l-w.ca>
date Sun, 10 Jun 2012 13:25:34 -0600 (2012-06-10)
parents 22b75f9788a5
children e4a0f58a5f9b bd286ab169c7
line wrap: on
line source
include $(NITROS9DIR)/rules.mak

dirs	= coco3 coco3_6309

# Make all components
all:
	@$(ECHO) "**************************************************"
	@$(ECHO) "*                                                *"
	@$(ECHO) "*             NitrOS-9 Level 2 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));)