view 3rdparty/makefile @ 3241:a313b2992adc

Updated level1/coco1/bootfiles/makefile to create bootfiles and kernel track files that use the Deluxe RS232 Pak as well as the DirectModem Pak. Updated level2/coco3/bootfiles/makefile to create bootfiles and kernel track files that use the Deluxe RS232 Pak as well as the DirectModem Pak.
author David Ladd <drencor-xeen@users.sourceforge.net>
date Fri, 09 Mar 2018 00:07:21 -0600
parents 9edca3e61b66
children
line wrap: on
line source

include ../rules.mak

dirs	= booters drivers fmgrs p2mods subrtns utils packages

# Make all components
all:
	@$(ECHO) "**************************************************"
	@$(ECHO) "*                                                *"
	@$(ECHO) "*               3rd Party Software               *"
	@$(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 &&) :

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

# Copy DSK images
dskcopy:
	$(foreach dir,$(dirs),$(MAKE) -C $(dir) dskcopy &&) :

# Info
info:
	@$(foreach dir, $(dirs), $(MAKE) -C $(dir) info;)