Mercurial > hg > Members > kono > nitros9-code
changeset 3221:13b52fb3aa79
Updated Drivers section makefile so it will process the dsk, dskclean
dskcopy, and info targets for the supported subdirectories.
author | David Ladd <drencor-xeen@users.sourceforge.net> |
---|---|
date | Wed, 20 Dec 2017 16:14:06 -0600 |
parents | 9ccec98c9897 |
children | c086a5d69b78 |
files | 3rdparty/drivers/makefile |
diffstat | 1 files changed, 14 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/3rdparty/drivers/makefile Wed Dec 20 16:10:50 2017 -0600 +++ b/3rdparty/drivers/makefile Wed Dec 20 16:14:06 2017 -0600 @@ -1,6 +1,6 @@ include ../../rules.mak -dirs = burke disto emudsk ide mmc s16550 sdisk sdisk3 tccc +dirs = burke disto emudsk ide mmc s16550 sdisk sdisk3 tccc nocan # Make all components all: @@ -15,6 +15,19 @@ 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;) +