annotate level1/cmds/makefile @ 1906:0382b69961f2

added target alldragon
author afra
date Thu, 03 Nov 2005 01:39:13 +0000
parents 6f066e2f3ee2
children 1e312b144f4d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1332
diff changeset
1 include ../../rules.mak
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2
1166
bb618bed0bdc Miscellaneous source improvements
boisy
parents: 1154
diff changeset
3 vpath %.asm $(3RDPARTY)/packages/basic09
bb618bed0bdc Miscellaneous source improvements
boisy
parents: 1154
diff changeset
4
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1332
diff changeset
5 DEPENDS = ./makefile
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6
490
7e5b18941974 basic09.asm removed
boisy
parents: 488
diff changeset
7 BASIC09FILES = runb.asm gfx.asm inkey.asm syscall.asm
1505
5d726c0e6238 shellplus back-ported to Level 1
boisy
parents: 1363
diff changeset
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
6f066e2f3ee2 Final changes for V03.02.04 release
boisy
parents: 1682
diff changeset
12 megaread mdir merge mfree mpi os9gen padrom park printerr procs prompt pwd pxd \
1510
80a221f7a461 shell now specified in 6809l1/makefile
boisy
parents: 1509
diff changeset
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
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
15
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
16 DRAGONCMDS = asm attr backup binex build cmp cobbler_dragon config copy cputype \
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
17 date dcheck debug ded deiniz del deldir devs dir disasm \
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
18 display dmode dsave dump echo edit error exbin format \
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
19 free grfo help ident iniz irqs link list load login makdir \
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
20 megaread mdir merge mfree mpi os9gen padrom park printerr procs prompt pwd pxd \
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
21 rename runb save setime shellplus shell_21 sleep \
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
22 tee tmode touch tsmon tuneport unlink verify xmode
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
23
1213
4e235f213651 Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents: 1166
diff changeset
24 SUBS = gfx inkey syscall
1505
5d726c0e6238 shellplus back-ported to Level 1
boisy
parents: 1363
diff changeset
25 ALLOBJS = $(CMDS) $(DRAGONCMDS) $(SUBS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
26
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
27 all: $(ALLOBJS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
28
1906
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
29 alldragon: $(DRAGONCMDS) $(SUBS)
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
30
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
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
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
43
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
44 cobbler_dragon: cobbler.asm
0382b69961f2 added target alldragon
afra
parents: 1700
diff changeset
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
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
47 clean:
1166
bb618bed0bdc Miscellaneous source improvements
boisy
parents: 1154
diff changeset
48 $(RM) $(ALLOBJS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
49
95
cab6c9f16913 Added identify target
boisy
parents: 21
diff changeset
50 identify:
cab6c9f16913 Added identify target
boisy
parents: 21
diff changeset
51 $(IDENT_SHORT) $(ALLOBJS)
107
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 104
diff changeset
52
322
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
53 showallobjs:
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
54 @$(ECHO) $(ALLOBJS)
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
55
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
56 showcocoobjs:
1505
5d726c0e6238 shellplus back-ported to Level 1
boisy
parents: 1363
diff changeset
57 @$(ECHO) $(CMDS) $(SUBS)
322
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
58
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
59 showdragonobjs:
0d2d4a28c490 cmp.asm and help.asm now assemble correctly
boisy
parents: 303
diff changeset
60 @$(ECHO) $(CMDS) $(DRAGONCMDS)