Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/makefile @ 1891:5f8822fb42e0
shortened H6309L2 code to fit within $1D0 bytes
author | robert |
---|---|
date | Fri, 14 Oct 2005 01:53:05 +0000 |
parents | 6f066e2f3ee2 |
children | 0382b69961f2 |
rev | line source |
---|---|
1363 | 1 include ../../rules.mak |
0 | 2 |
1166 | 3 vpath %.asm $(3RDPARTY)/packages/basic09 |
4 | |
1363 | 5 DEPENDS = ./makefile |
0 | 6 |
490 | 7 BASIC09FILES = runb.asm gfx.asm inkey.asm syscall.asm |
1505 | 8 CMDS = asm attr backup binex build cmp cobbler config copy cputype \ |
1213
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1166
diff
changeset
|
9 date dcheck debug ded deiniz del deldir devs dir disasm \ |
1656
5b5390b7333a
exmode replaces xmode as the ideal utility. makefiles and help updated accordingly
boisy
parents:
1528
diff
changeset
|
10 display dmode dsave dump echo edit error exbin format \ |
1213
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1166
diff
changeset
|
11 free grfo help ident iniz irqs link list load login makdir \ |
1700 | 12 megaread mdir merge mfree mpi os9gen padrom park printerr procs prompt pwd pxd \ |
1510 | 13 rename runb save setime shellplus shell_21 sleep \ |
1682
e2ac12787e55
Sticking with clock2_smart for now. Also moved Robert's swread and swset to 3rdparty/utils
boisy
parents:
1678
diff
changeset
|
14 tee tmode touch tsmon tuneport unlink verify xmode |
1213
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1166
diff
changeset
|
15 SUBS = gfx inkey syscall |
1505 | 16 ALLOBJS = $(CMDS) $(DRAGONCMDS) $(SUBS) |
0 | 17 |
18 all: $(ALLOBJS) | |
19 | |
689
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
20 pwd: pd.asm |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
21 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPWD=1 |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
22 |
1678
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
23 xmode: xmode.asm |
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
24 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aXMODE=1 |
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
25 |
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
26 tmode: xmode.asm |
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
27 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aTMODE=1 |
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
28 |
689
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
29 pxd: pd.asm |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
30 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPXD=1 |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
31 |
0 | 32 clean: |
1166 | 33 $(RM) $(ALLOBJS) |
0 | 34 |
95 | 35 identify: |
36 $(IDENT_SHORT) $(ALLOBJS) | |
107 | 37 |
322 | 38 showallobjs: |
39 @$(ECHO) $(ALLOBJS) | |
40 | |
41 showcocoobjs: | |
1505 | 42 @$(ECHO) $(CMDS) $(SUBS) |
322 | 43 |
44 showdragonobjs: | |
45 @$(ECHO) $(CMDS) $(DRAGONCMDS) |