Mercurial > hg > Members > kono > nitros9-code
annotate bootman/makefile @ 2850:95923f065070 lwtools-port
arcadepak/makefile: Call "os9 copy" with multiple files
Instead of calling "os9 copy" for every single file, copy
all files with one call. Speeds up disk image build time.
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Fri, 12 Jul 2013 22:26:05 +0200 |
parents | c1892376e7a7 |
children | 28ed72477814 |
rev | line source |
---|---|
2163 | 1 include ../rules.mak |
2 | |
2234 | 3 all: bootman_coco_6551 bootman_coco3_6551 #bootman_loader |
2191 | 4 |
5 bootman_loader: bootman_loader.a | |
6 mamou $^ -o$@ -mb | |
7 | |
2234 | 8 bootman_coco_6551: bootman.r boot_config.r mach_coco.r llio_6551.r llbt_1773.r |
2233 | 9 $(LINKER) $^ -o=$@ |
10 | |
2234 | 11 bootman_coco3_6551: bootman.r boot_config.r mach_coco3.r llio_6551.r llbt_1773.r |
2191 | 12 $(LINKER) $^ -o=$@ |
2163 | 13 |
14 dsk: bootman | |
15 decb dskini bootman.dsk | |
2234 | 16 decb copy -b -2 bootman_coco_6551 bootman.dsk,BM6551.BIN |
17 decb copy -b -2 bootman_coco3_6551 bootman.dsk,BM36551.BIN | |
2163 | 18 |
19 clean: | |
2835
c1892376e7a7
Makefiles: Do not let $(RM) silently fail
Tormod Volden <debian.tormod@gmail.com>
parents:
2234
diff
changeset
|
20 $(RM) *.r bootman_coco_6551 bootman_coco3_6551 bootman.dsk |