Mercurial > hg > Members > kono > nitros9-code
annotate level2/cmds/makefile @ 327:f0a2dcf03503
Moved dir.asm to level1/CMDS
author | boisy |
---|---|
date | Wed, 24 Jul 2002 05:00:43 +0000 |
parents | 2c0ddf807efa |
children | 2e7d4518cb8b |
rev | line source |
---|---|
0 | 1 include ../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
4 | |
327 | 5 CMDS = attr binex build cmp cobbler copy date \ |
6 deiniz del deldir dir display dump echo error exbin \ | |
7 free help ident iniz link list load login makdir mdir \ | |
219
f213b599d6e2
Moved ddir, dirm, dmem, idir, mmap, pmap, proc to 3rdparty/utils/kdutils
boisy
parents:
218
diff
changeset
|
8 merge mfree montype procs pwd pxd rename save \ |
220
7fed7dcadaee
Moved smartwatch commands to 3rdparty/utils/smartwatch
boisy
parents:
219
diff
changeset
|
9 setime shell_21 sleep tee tmode tsmon unlink \ |
0 | 10 verify wcreate xmode |
321 | 11 SUBS = gfx2 gfx inkey |
0 | 12 ALLOBJS = $(CMDS) $(SUBS) |
13 | |
14 SHELLMODS = shell_21 build copy date deiniz del dir display echo iniz \ | |
15 link list load mdir merge mfree procs tmode unlink | |
220
7fed7dcadaee
Moved smartwatch commands to 3rdparty/utils/smartwatch
boisy
parents:
219
diff
changeset
|
16 UTILPAK1 = attr deldir ident rename setime xmode |
0 | 17 |
327 | 18 LEVEL1FILES = binex.asm attr.asm build.asm cmp.asm cobbler.asm date.asm deiniz.asm del.asm deldir.asm \ |
19 dir.asm dump.asm echo.asm error.asm exbin.asm free.asm gfx.asm help.asm ident.asm iniz.asm inkey.asm link.asm \ | |
321 | 20 list.asm load.asm login.asm merge.asm os9gen.asm pwd.asm pxd.asm rename.asm \ |
327 | 21 save.asm setime.asm sleep.asm tee.asm tmode.asm tuneport.asm tsmon.asm verify.asm |
160 | 22 |
321 | 23 LEVEL2FILES = gfx2.asm mdir.asm mfree.asm montype.asm procs.asm \ |
223 | 24 shell_21.asm unlink.asm wcreate.asm |
160 | 25 |
26 # Files not compilable by os9asm: Config attr cmp dcheck dir dsave | |
220
7fed7dcadaee
Moved smartwatch commands to 3rdparty/utils/smartwatch
boisy
parents:
219
diff
changeset
|
27 all: $(ALLOBJS) shell utilpak1 $(DEPENDS) |
7fed7dcadaee
Moved smartwatch commands to 3rdparty/utils/smartwatch
boisy
parents:
219
diff
changeset
|
28 $(CHMOD) a+rx $(ALLOBJS) shell utilpak1 |
0 | 29 |
30 shell: $(SHELLMODS) $(DEPENDS) | |
31 $(MERGE) $(SHELLMODS)>$@ | |
32 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***" | |
33 @ls -l $@ | |
34 @$(ECHO) | |
35 | |
36 utilpak1: $(UTILPAK1) $(DEPENDS) | |
37 $(MERGE) $(UTILPAK1)>$@ | |
38 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***" | |
39 @ls -l $@ | |
40 @$(ECHO) | |
41 | |
160 | 42 $(LEVEL1FILES): ../../level1/CMDS/$@ |
161
fed96c42e0b4
The files that are the same between level2 and level2v3 have been
roug
parents:
160
diff
changeset
|
43 -ln -s ../../level1/CMDS/$@ |
160 | 44 |
161
fed96c42e0b4
The files that are the same between level2 and level2v3 have been
roug
parents:
160
diff
changeset
|
45 $(LEVEL2FILES): ../../level2/CMDS/$@ |
fed96c42e0b4
The files that are the same between level2 and level2v3 have been
roug
parents:
160
diff
changeset
|
46 -ln -s ../../level2/CMDS/$@ |
0 | 47 clean: |
220
7fed7dcadaee
Moved smartwatch commands to 3rdparty/utils/smartwatch
boisy
parents:
219
diff
changeset
|
48 $(RM) $(ALLOBJS) $(LEVEL1FILES) $(LEVEL2FILES) shell utilpak1 |
0 | 49 |
100 | 50 identify: |
51 $(IDENT_SHORT) $(ALLOBJS) |