annotate level1/cmds/makefile @ 1166:bb618bed0bdc

Miscellaneous source improvements
author boisy
date Mon, 19 May 2003 11:06:54 +0000
parents c8b36ad42f6a
children 4e235f213651
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1166
bb618bed0bdc Miscellaneous source improvements
boisy
parents: 1154
diff changeset
1 # Makefile for OS-9 Level One CMDS/
bb618bed0bdc Miscellaneous source improvements
boisy
parents: 1154
diff changeset
2
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
3 include ../../Makefile.rules
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
4
1166
bb618bed0bdc Miscellaneous source improvements
boisy
parents: 1154
diff changeset
5 vpath %.asm $(3RDPARTY)/packages/basic09
bb618bed0bdc Miscellaneous source improvements
boisy
parents: 1154
diff changeset
6
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
7 DEPENDS = ./Makefile
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8
490
7e5b18941974 basic09.asm removed
boisy
parents: 488
diff changeset
9 BASIC09FILES = runb.asm gfx.asm inkey.asm syscall.asm
1154
c8b36ad42f6a cputype added
boisy
parents: 1129
diff changeset
10 COCOCMDS = asm attr backup binex build cmp cobbler config copy cputype date \
968
69757400b240 Added to std CMDS
boisy
parents: 963
diff changeset
11 dcheck debug ded deiniz del deldir devs dir disasm display \
69757400b240 Added to std CMDS
boisy
parents: 963
diff changeset
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
cb66ee3d17b2 Added touch to CMDS list
boisy
parents: 689
diff changeset
15 rename runb save setime shell sleep tee tmode touch tsmon \
322
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
16 tuneport unlink verify xmode gfx inkey syscall
1045
3ebe2a5977d9 drvr51 moved into MODULES
boisy
parents: 968
diff changeset
17 DRAGONCMDS = cobbler_d64 format_d64 os9gen_d64 go51
562
c7dda4211c00 All CMDS are in one macro now
boisy
parents: 492
diff changeset
18 ALLOBJS = $(COCOCMDS) $(DRAGONCMDS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
19
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
20 all: $(ALLOBJS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
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
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
28 clean:
1166
bb618bed0bdc Miscellaneous source improvements
boisy
parents: 1154
diff changeset
29 $(RM) $(ALLOBJS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
30
95
cab6c9f16913 Added identify target
boisy
parents: 21
diff changeset
31 identify:
cab6c9f16913 Added identify target
boisy
parents: 21
diff changeset
32 $(IDENT_SHORT) $(ALLOBJS)
107
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 104
diff changeset
33
322
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
34 showallobjs:
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
35 @$(ECHO) $(ALLOBJS)
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
36
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
37 showcocoobjs:
562
c7dda4211c00 All CMDS are in one macro now
boisy
parents: 492
diff changeset
38 @$(ECHO) $(COCOCMDS)
322
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
39
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
40 showdragonobjs:
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
41 @$(ECHO) $(CMDS) $(DRAGONCMDS)