Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/packages/multivue/cmds_6809/makefile @ 1428:7e0ecb2e394a
More improvements for Multi-vue
author | boisy |
---|---|
date | Wed, 03 Dec 2003 00:32:24 +0000 |
parents | b3868abe1fee |
children | 44d21b07a99f |
rev | line source |
---|---|
1363 | 1 include ../../../../rules.mak |
443 | 2 |
1428 | 3 vpath %.asm $(6809L2)/cmds:$(6809L1)/cmds |
1427
b3868abe1fee
Rearrangement of directories and files for making bootable 6809/6309 MV disks
boisy
parents:
1422
diff
changeset
|
4 |
1363 | 5 DEPENDS = ./makefile |
443 | 6 |
1428 | 7 CMDS = shell utilpak1 grfdrv \ |
8 gshell cocopr control demo fstat \ | |
9 gcal gcalc gclock gport gprint \ | |
10 backup format free help | |
11 | |
12 SHELLMODS = shellplus date deiniz echo iniz link load save unlink | |
13 UTILPAK1 = attr build copy del deldir dir display list makdir mdir \ | |
14 merge mfree procs rename sleep tmode | |
443 | 15 |
448 | 16 ALLOBJS = $(CMDS) |
443 | 17 |
18 all: $(ALLOBJS) | |
19 | |
1427
b3868abe1fee
Rearrangement of directories and files for making bootable 6809/6309 MV disks
boisy
parents:
1422
diff
changeset
|
20 gshell: gshell.asm |
1422 | 21 $(AS) $(ASOUT)$@ $< $(AFLAGS) |
22 | |
1428 | 23 shell: $(SHELLMODS) $(DEPENDS) |
24 $(MERGE) $(SHELLMODS)>$@ | |
25 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***" | |
26 @ls -l $@ | |
27 @$(ECHO) "" | |
28 | |
29 utilpak1: $(UTILPAK1) $(DEPENDS) | |
30 $(MERGE) $(UTILPAK1)>$@ | |
31 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***" | |
32 @ls -l $@ | |
33 @$(ECHO) "" | |
34 | |
443 | 35 clean: |
36 $(RM) $(ALLOBJS) | |
37 | |
38 showobjs: | |
39 @$(ECHO) $(ALLOBJS) | |
40 | |
41 identify: | |
42 $(IDENT_SHORT) $(ALLOBJS) |