Mercurial > hg > Members > kono > nitros9-code
view 3rdparty/makefile @ 2857:d5220b220313 lwtools-port
Makefiles: Use native cp for copying dsk images
The "os9 copy" is not able to do this on Cygwin,
and is not the right tool for the job anyway.
Thanks to Bob Devries for reporting this issue!
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sat, 13 Jul 2013 11:53:36 +0200 |
parents | 56179f66e43d |
children | baa835d68db2 bd286ab169c7 |
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), ($(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);) # Clean DSK images dskclean: $(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);) # Copy DSK images dskcopy: $(foreach dir, $(dirs), ($(CD) $(dir); make dskcopy);) # Info info: @$(foreach dir, $(dirs), ($(CD) $(dir); make info; $(ECHO));)