Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/drivers/makefile @ 1652:558cab468052
RG fixed a bug in the Vavasour emulator clock2 module.
clock2 is now of type Sbrtn instead of Systm. clock.asm has been modified
to link to this type.
author | boisy |
---|---|
date | Sat, 17 Jul 2004 12:20:31 +0000 |
parents | 770c350f4c15 |
children | 7710f25f2efe |
rev | line source |
---|---|
1363 | 1 include ../../rules.mak |
0 | 2 |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1031
diff
changeset
|
3 dirs = burke disto emudsk flash flashpak ide s16550 sdisk sdisk3 tccc |
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1031
diff
changeset
|
4 |
0 | 5 # Make all components |
6 all: | |
1366 | 7 @$(ECHO) "**************************************************" |
8 @$(ECHO) "* *" | |
9 @$(ECHO) "* 3rd Party Device Drivers *" | |
10 @$(ECHO) "* *" | |
11 @$(ECHO) "**************************************************" | |
1133 | 12 $(foreach dir, $(dirs), ($(CD) $(dir); make);) |
0 | 13 |
14 # Clean all components | |
15 clean: | |
1133 | 16 $(foreach dir, $(dirs), ($(CD) $(dir); make clean);) |