annotate level2/cmds/makefile @ 1528:1c5a50add566

Megaread added
author boisy
date Wed, 07 Apr 2004 01:43:41 +0000
parents 82200a2c5721
children ad9f45622a19
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1333
diff changeset
1 include ../../rules.mak
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1333
diff changeset
3 vpath %.asm $(6809L1)/cmds:$(3RDPARTY)/packages/basic09
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1010
diff changeset
4
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1333
diff changeset
5 DEPENDS = ./makefile
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6
964
4f56e6891d94 Added new commands to standard CMDS toolset
boisy
parents: 858
diff changeset
7 CMDS = asm attr backup binex build cmp cobbler copy cputype \
969
43792cdb993d ded added to std CMDS
boisy
parents: 966
diff changeset
8 date dcheck debug ded deiniz del deldir devs dir dirm disasm \
965
53553cdc265c New commands added to standard CMDS
boisy
parents: 964
diff changeset
9 display dmem dmode dsave dump echo edit error exbin exmode \
53553cdc265c New commands added to standard CMDS
boisy
parents: 964
diff changeset
10 format free grfdrv help ident iniz irqs link list load login \
1528
1c5a50add566 Megaread added
boisy
parents: 1523
diff changeset
11 makdir mdir megaread merge mfree mmap modpatch montype mpi os9gen padrom park \
1214
701f6a80163f bootscripts and bootlists added
boisy
parents: 1167
diff changeset
12 prompt pmap proc procs pwd pxd reboot rename runb save setime \
701f6a80163f bootscripts and bootlists added
boisy
parents: 1167
diff changeset
13 shell_21 shellplus sleep smap tee tmode touch \
1010
1027549ee381 Added tuneport
boisy
parents: 969
diff changeset
14 tsmon tuneport unlink verify wcreate xmode
430
a71313ae3643 syscall pulled from level1
boisy
parents: 421
diff changeset
15 SUBS = gfx2 gfx inkey syscall
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
16
833
143b6d58d434 shellplus and utilpak1 changed
boisy
parents: 786
diff changeset
17 SHELLMODS = shellplus date deiniz echo iniz link load save unlink
1167
a3d0ac951684 Miscellaneous source improvements
boisy
parents: 1129
diff changeset
18 UTILPAK1 = attr build copy del deldir dir display list makdir mdir \
1329
76b1793dbd1c Merge now supports -z
boisy
parents: 1214
diff changeset
19 merge mfree procs rename sleep tmode
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
20
341
20944721d3e6 Major makefile mods
boisy
parents: 340
diff changeset
21 ALLOBJS = $(CMDS) $(SUBS)
20944721d3e6 Major makefile mods
boisy
parents: 340
diff changeset
22
335
9edb1a203a78 Moved level2/CMDS to here, as level2 will be deprecated
boisy
parents: 328
diff changeset
23 # Files not compilable by os9asm: config
220
7fed7dcadaee Moved smartwatch commands to 3rdparty/utils/smartwatch
boisy
parents: 219
diff changeset
24 all: $(ALLOBJS) shell utilpak1 $(DEPENDS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
25
690
7b42af4e85c2 Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents: 663
diff changeset
26 pwd: pd.asm
7b42af4e85c2 Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents: 663
diff changeset
27 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPWD=1
7b42af4e85c2 Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents: 663
diff changeset
28
7b42af4e85c2 Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents: 663
diff changeset
29 pxd: pd.asm
7b42af4e85c2 Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents: 663
diff changeset
30 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPXD=1
7b42af4e85c2 Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents: 663
diff changeset
31
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
32 shell: $(SHELLMODS) $(DEPENDS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
33 $(MERGE) $(SHELLMODS)>$@
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
34 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
35 @ls -l $@
560
417c5329cba2 Added "" to blank ECHO
boisy
parents: 539
diff changeset
36 @$(ECHO) ""
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
37
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
38 utilpak1: $(UTILPAK1) $(DEPENDS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
39 $(MERGE) $(UTILPAK1)>$@
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
40 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
41 @ls -l $@
560
417c5329cba2 Added "" to blank ECHO
boisy
parents: 539
diff changeset
42 @$(ECHO) ""
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
43
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
44 clean:
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1010
diff changeset
45 $(RM) shell utilpak1 $(ALLOBJS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
46
341
20944721d3e6 Major makefile mods
boisy
parents: 340
diff changeset
47 showobjs:
431
e35722b2087e Changed order of shell/utilpak1
boisy
parents: 430
diff changeset
48 @$(ECHO) shell utilpak1 $(ALLOBJS)
341
20944721d3e6 Major makefile mods
boisy
parents: 340
diff changeset
49
100
5679e0d70acf Added identify target
boisy
parents: 0
diff changeset
50 identify:
5679e0d70acf Added identify target
boisy
parents: 0
diff changeset
51 $(IDENT_SHORT) $(ALLOBJS)