view level1/makefile @ 2816:8babf9987e22 lwtools-port

Fixed issue with makefile and inetd/dw/telnet
author Boisy Pitre <boisy.pitre@nuance.com>
date Thu, 14 Feb 2013 07:29:48 -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));)