Mercurial > hg > Members > kono > nitros9-code
annotate level2/cmds/makefile @ 1528:1c5a50add566
Megaread added
author | boisy |
---|---|
date | Wed, 07 Apr 2004 01:43:41 +0000 |
parents | 82200a2c5721 |
children | ad9f45622a19 |
rev | line source |
---|---|
1363 | 1 include ../../rules.mak |
0 | 2 |
1363 | 3 vpath %.asm $(6809L1)/cmds:$(3RDPARTY)/packages/basic09 |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1010
diff
changeset
|
4 |
1363 | 5 DEPENDS = ./makefile |
0 | 6 |
964 | 7 CMDS = asm attr backup binex build cmp cobbler copy cputype \ |
969 | 8 date dcheck debug ded deiniz del deldir devs dir dirm disasm \ |
965 | 9 display dmem dmode dsave dump echo edit error exbin exmode \ |
10 format free grfdrv help ident iniz irqs link list load login \ | |
1528 | 11 makdir mdir megaread merge mfree mmap modpatch montype mpi os9gen padrom park \ |
1214 | 12 prompt pmap proc procs pwd pxd reboot rename runb save setime \ |
13 shell_21 shellplus sleep smap tee tmode touch \ | |
1010 | 14 tsmon tuneport unlink verify wcreate xmode |
430 | 15 SUBS = gfx2 gfx inkey syscall |
0 | 16 |
833 | 17 SHELLMODS = shellplus date deiniz echo iniz link load save unlink |
1167 | 18 UTILPAK1 = attr build copy del deldir dir display list makdir mdir \ |
1329 | 19 merge mfree procs rename sleep tmode |
0 | 20 |
341 | 21 ALLOBJS = $(CMDS) $(SUBS) |
22 | |
335
9edb1a203a78
Moved level2/CMDS to here, as level2 will be deprecated
boisy
parents:
328
diff
changeset
|
23 # Files not compilable by os9asm: config |
220
7fed7dcadaee
Moved smartwatch commands to 3rdparty/utils/smartwatch
boisy
parents:
219
diff
changeset
|
24 all: $(ALLOBJS) shell utilpak1 $(DEPENDS) |
0 | 25 |
690
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
26 pwd: pd.asm |
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
27 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPWD=1 |
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
28 |
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
29 pxd: pd.asm |
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
30 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPXD=1 |
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
31 |
0 | 32 shell: $(SHELLMODS) $(DEPENDS) |
33 $(MERGE) $(SHELLMODS)>$@ | |
34 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***" | |
35 @ls -l $@ | |
560 | 36 @$(ECHO) "" |
0 | 37 |
38 utilpak1: $(UTILPAK1) $(DEPENDS) | |
39 $(MERGE) $(UTILPAK1)>$@ | |
40 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***" | |
41 @ls -l $@ | |
560 | 42 @$(ECHO) "" |
0 | 43 |
44 clean: | |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
1010
diff
changeset
|
45 $(RM) shell utilpak1 $(ALLOBJS) |
0 | 46 |
341 | 47 showobjs: |
431 | 48 @$(ECHO) shell utilpak1 $(ALLOBJS) |
341 | 49 |
100 | 50 identify: |
51 $(IDENT_SHORT) $(ALLOBJS) |