Mercurial > hg > Members > kono > nitros9-code
view 3rdparty/makefile @ 2965:9edca3e61b66
3rdparty: Stop build on failing dsk or dskcopy targets
Add dummy dsk and dskcopy targets where there are no
disk images to be built.
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Mon, 10 Feb 2014 01:36:20 +0100 |
parents | 1c1600cc9f02 |
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;)