Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/makefile @ 1960:6378546dc96c
dirsort now part of standard commands
author | boisy |
---|---|
date | Fri, 23 Dec 2005 02:28:50 +0000 |
parents | 1e312b144f4d |
children | b2ee6d24edcc |
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 |
1933 | 8 CMDS = asm attr backup binex build cmp cobbler copy cputype \ |
1960 | 9 date dcheck debug ded deiniz del deldir devs dir dirsort 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 \ |
1933 | 11 free grfdrv 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 |
1906 | 15 |
1933 | 16 DRAGONCMDS = asm attr backup binex build cmp cobbler_dragon copy cputype \ |
1960 | 17 date dcheck debug ded deiniz del deldir devs dir dirsort disasm \ |
1906 | 18 display dmode dsave dump echo edit error exbin format \ |
1933 | 19 free grfdrv help ident iniz irqs link list load login makdir \ |
1906 | 20 megaread mdir merge mfree mpi os9gen padrom park printerr procs prompt pwd pxd \ |
21 rename runb save setime shellplus shell_21 sleep \ | |
22 tee tmode touch tsmon tuneport unlink verify xmode | |
23 | |
1213
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1166
diff
changeset
|
24 SUBS = gfx inkey syscall |
1505 | 25 ALLOBJS = $(CMDS) $(DRAGONCMDS) $(SUBS) |
0 | 26 |
27 all: $(ALLOBJS) | |
28 | |
1906 | 29 alldragon: $(DRAGONCMDS) $(SUBS) |
30 | |
31 | |
689
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
32 pwd: pd.asm |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
33 $(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
|
34 |
1678
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
35 xmode: xmode.asm |
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
36 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aXMODE=1 |
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
37 |
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
38 tmode: xmode.asm |
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
39 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aTMODE=1 |
40322608e006
tmode is now made from xmode, dsave modified to handle new tmode parameter
boisy
parents:
1672
diff
changeset
|
40 |
689
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
41 pxd: pd.asm |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
42 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPXD=1 |
1906 | 43 |
44 cobbler_dragon: cobbler.asm | |
45 $(AS) $(AFLAGS) $< $(ASOUT)cobbler -aDRAGON=1 | |
689
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
46 |
0 | 47 clean: |
1166 | 48 $(RM) $(ALLOBJS) |
0 | 49 |
95 | 50 identify: |
51 $(IDENT_SHORT) $(ALLOBJS) | |
107 | 52 |
322 | 53 showallobjs: |
54 @$(ECHO) $(ALLOBJS) | |
55 | |
56 showcocoobjs: | |
1505 | 57 @$(ECHO) $(CMDS) $(SUBS) |
322 | 58 |
59 showdragonobjs: | |
60 @$(ECHO) $(CMDS) $(DRAGONCMDS) |