Mercurial > hg > Members > kono > nitros9-code
annotate level2/cmds/makefile @ 964:4f56e6891d94
Added new commands to standard CMDS toolset
author | boisy |
---|---|
date | Fri, 31 Jan 2003 17:40:46 +0000 |
parents | 04b393b446cb |
children | 53553cdc265c |
rev | line source |
---|---|
0 | 1 include ../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
4 | |
964 | 5 CMDS = asm attr backup binex build cmp cobbler copy cputype \ |
6 date dcheck debug deiniz del deldir devs dir disasm display \ | |
7 dmode dsave dump echo edit error exbin exmode format \ | |
8 free grfdrv help ident iniz irqs link list load login makdir \ | |
9 mdir merge mfree modpatch montype os9gen procs pwd pxd rename \ | |
10 runb save setime shell_21 shellplus sleep tee tmode touch \ | |
11 tsmon unlink verify wcreate xmode | |
430 | 12 SUBS = gfx2 gfx inkey syscall |
0 | 13 |
833 | 14 SHELLMODS = shellplus date deiniz echo iniz link load save unlink |
15 UTILPAK1 = attr copy del deldir dir display list makdir mdir \ | |
16 mfree procs rename tmode | |
0 | 17 |
692 | 18 BASIC09FILES = runb.asm gfx.asm gfx2.asm inkey.asm syscall.asm |
964 | 19 LEVEL1FILES = asm.asm attr.asm backup.asm binex.asm build.asm cmp.asm \ |
20 cobbler.asm copy.asm cputype.asm date.asm dcheck.asm \ | |
21 debug.asm deiniz.asm del.asm deldir.asm devs.asm dir.asm \ | |
22 disasm.asm display.asm dmode.asm dsave.asm dump.asm echo.asm \ | |
23 edit.asm error.asm exbin.asm exmode.asm format.asm free.asm \ | |
24 help.asm ident.asm iniz.asm irqs.asm link.asm \ | |
690
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
25 list.asm load.asm login.asm makdir.asm merge.asm os9gen.asm pd.asm rename.asm \ |
858 | 26 save.asm setime.asm sleep.asm tee.asm tmode.asm touch.asm tuneport.asm tsmon.asm verify.asm xmode.asm |
160 | 27 |
341 | 28 ALLOBJS = $(CMDS) $(SUBS) |
29 | |
335
9edb1a203a78
Moved level2/CMDS to here, as level2 will be deprecated
boisy
parents:
328
diff
changeset
|
30 # Files not compilable by os9asm: config |
220
7fed7dcadaee
Moved smartwatch commands to 3rdparty/utils/smartwatch
boisy
parents:
219
diff
changeset
|
31 all: $(ALLOBJS) shell utilpak1 $(DEPENDS) |
341 | 32 $(CHMOD) 755 $(ALLOBJS) shell utilpak1 |
0 | 33 |
690
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
34 pwd: pd.asm |
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
35 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPWD=1 |
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
36 |
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
37 pxd: pd.asm |
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
38 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPXD=1 |
7b42af4e85c2
Modified due to folding of pxd.asm and pwd.asm into pd.asm
boisy
parents:
663
diff
changeset
|
39 |
0 | 40 shell: $(SHELLMODS) $(DEPENDS) |
41 $(MERGE) $(SHELLMODS)>$@ | |
42 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***" | |
43 @ls -l $@ | |
560 | 44 @$(ECHO) "" |
0 | 45 |
46 utilpak1: $(UTILPAK1) $(DEPENDS) | |
47 $(MERGE) $(UTILPAK1)>$@ | |
48 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***" | |
49 @ls -l $@ | |
560 | 50 @$(ECHO) "" |
0 | 51 |
487
6e9b939a2272
gfx, syscall and inkey are now linked from the Basic09 source directory
boisy
parents:
458
diff
changeset
|
52 $(BASIC09FILES): $(BASEDIR)/3rdparty/packages/basic09/$@ |
6e9b939a2272
gfx, syscall and inkey are now linked from the Basic09 source directory
boisy
parents:
458
diff
changeset
|
53 -$(SOFTLINK) $(BASEDIR)/3rdparty/packages/basic09/$@ |
6e9b939a2272
gfx, syscall and inkey are now linked from the Basic09 source directory
boisy
parents:
458
diff
changeset
|
54 |
356 | 55 $(LEVEL1FILES): $(LEVEL1)/CMDS/$@ |
56 -$(SOFTLINK) $(LEVEL1)/CMDS/$@ | |
160 | 57 |
0 | 58 clean: |
487
6e9b939a2272
gfx, syscall and inkey are now linked from the Basic09 source directory
boisy
parents:
458
diff
changeset
|
59 $(RM) shell utilpak1 $(ALLOBJS) $(BASIC09FILES) $(LEVEL1FILES) |
0 | 60 |
341 | 61 showobjs: |
431 | 62 @$(ECHO) shell utilpak1 $(ALLOBJS) |
341 | 63 |
100 | 64 identify: |
65 $(IDENT_SHORT) $(ALLOBJS) |