view 3rdparty/utils/makefile @ 2309:f3e79ee2ffef

Driver now moved ISR to dw3, all works
author boisy
date Sun, 03 Jan 2010 15:24:52 +0000
parents 174d263c0995
children 00e35931156e
line wrap: on
line source

include ../../rules.mak

dirs	= boisy dasm smartwatch winfo

# Make all components
all:
	@$(ECHO) "**************************************************"
	@$(ECHO) "*                                                *"
	@$(ECHO) "*                    Utilities                   *"
	@$(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);)