Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/makefile @ 1509:f5e2b0e2cf29
Fixed problem in level 1 port of shell_21, bootfile no longer has shell in it.
author | boisy |
---|---|
date | Wed, 14 Jan 2004 15:05:32 +0000 |
parents | 5d726c0e6238 |
children | 80a221f7a461 |
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 \ |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1166
diff
changeset
|
10 display dmode dsave dump echo edit error exbin exmode format \ |
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 \ |
1332 | 12 mdir merge mfree os9gen padrom park prompt printerr procs pwd pxd \ |
1509
f5e2b0e2cf29
Fixed problem in level 1 port of shell_21, bootfile no longer has shell in it.
boisy
parents:
1505
diff
changeset
|
13 rename runb save setime shell shell_21 sleep \ |
1505 | 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 |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
23 pxd: pd.asm |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
24 $(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
|
25 |
1505 | 26 shell: shellplus.asm |
27 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
28 | |
0 | 29 clean: |
1166 | 30 $(RM) $(ALLOBJS) |
0 | 31 |
95 | 32 identify: |
33 $(IDENT_SHORT) $(ALLOBJS) | |
107 | 34 |
322 | 35 showallobjs: |
36 @$(ECHO) $(ALLOBJS) | |
37 | |
38 showcocoobjs: | |
1505 | 39 @$(ECHO) $(CMDS) $(SUBS) |
322 | 40 |
41 showdragonobjs: | |
42 @$(ECHO) $(CMDS) $(DRAGONCMDS) |