Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/makefile @ 1166:bb618bed0bdc
Miscellaneous source improvements
author | boisy |
---|---|
date | Mon, 19 May 2003 11:06:54 +0000 |
parents | c8b36ad42f6a |
children | 4e235f213651 |
rev | line source |
---|---|
1166 | 1 # Makefile for OS-9 Level One CMDS/ |
2 | |
0 | 3 include ../../Makefile.rules |
4 | |
1166 | 5 vpath %.asm $(3RDPARTY)/packages/basic09 |
6 | |
0 | 7 DEPENDS = ./Makefile |
8 | |
490 | 9 BASIC09FILES = runb.asm gfx.asm inkey.asm syscall.asm |
1154 | 10 COCOCMDS = asm attr backup binex build cmp cobbler config copy cputype date \ |
968 | 11 dcheck debug ded deiniz del deldir devs dir disasm display \ |
12 dmode dsave dump echo edit error exbin exmode format free grfo \ | |
963
7cecd837bcab
Added new commands as part of standard CMDS distribution
boisy
parents:
862
diff
changeset
|
13 help ident iniz irqs link list load login makdir mdir merge \ |
7cecd837bcab
Added new commands as part of standard CMDS distribution
boisy
parents:
862
diff
changeset
|
14 mfree os9gen park printerr procs pwd pxd \ |
862 | 15 rename runb save setime shell sleep tee tmode touch tsmon \ |
322 | 16 tuneport unlink verify xmode gfx inkey syscall |
1045 | 17 DRAGONCMDS = cobbler_d64 format_d64 os9gen_d64 go51 |
562 | 18 ALLOBJS = $(COCOCMDS) $(DRAGONCMDS) |
0 | 19 |
20 all: $(ALLOBJS) | |
21 | |
689
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
22 pwd: pd.asm |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
23 $(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
|
24 |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
25 pxd: pd.asm |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
26 $(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
|
27 |
0 | 28 clean: |
1166 | 29 $(RM) $(ALLOBJS) |
0 | 30 |
95 | 31 identify: |
32 $(IDENT_SHORT) $(ALLOBJS) | |
107 | 33 |
322 | 34 showallobjs: |
35 @$(ECHO) $(ALLOBJS) | |
36 | |
37 showcocoobjs: | |
562 | 38 @$(ECHO) $(COCOCMDS) |
322 | 39 |
40 showdragonobjs: | |
41 @$(ECHO) $(CMDS) $(DRAGONCMDS) |