Mercurial > hg > Members > kono > nitros9-code
annotate level2/cmds/makefile @ 404:bd914df47bf8
Grab format from level1
author | boisy |
---|---|
date | Fri, 30 Aug 2002 03:13:30 +0000 |
parents | 665287f6d3fd |
children | e5dfb2271401 |
rev | line source |
---|---|
0 | 1 include ../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
4 | |
327 | 5 CMDS = attr binex build cmp cobbler copy date \ |
404 | 6 deiniz del deldir dir display dump echo error exbin format \ |
340 | 7 free grfdrv 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 |
13 SHELLMODS = shell_21 build copy date deiniz del dir display echo iniz \ | |
348 | 14 link list load makdir mdir merge mfree procs save tee tmode \ |
15 unlink | |
16 UTILPAK1 = attr deldir dump free ident pwd pxd rename setime \ | |
17 sleep verify wcreate xmode | |
0 | 18 |
356 | 19 LEVEL1FILES = attr.asm binex.asm build.asm cmp.asm cobbler.asm copy.asm date.asm deiniz.asm del.asm deldir.asm \ |
404 | 20 dir.asm display.asm dump.asm echo.asm error.asm exbin.asm format.asm free.asm gfx.asm help.asm ident.asm iniz.asm inkey.asm link.asm \ |
328
2e7d4518cb8b
Fixed so all commands come from either level1/CMDS or level2/CMDS
boisy
parents:
327
diff
changeset
|
21 list.asm load.asm login.asm makdir.asm merge.asm os9gen.asm pwd.asm pxd.asm rename.asm \ |
2e7d4518cb8b
Fixed so all commands come from either level1/CMDS or level2/CMDS
boisy
parents:
327
diff
changeset
|
22 save.asm setime.asm sleep.asm tee.asm tmode.asm tuneport.asm tsmon.asm verify.asm xmode.asm |
160 | 23 |
341 | 24 ALLOBJS = $(CMDS) $(SUBS) |
25 | |
335
9edb1a203a78
Moved level2/CMDS to here, as level2 will be deprecated
boisy
parents:
328
diff
changeset
|
26 # Files not compilable by os9asm: config |
220
7fed7dcadaee
Moved smartwatch commands to 3rdparty/utils/smartwatch
boisy
parents:
219
diff
changeset
|
27 all: $(ALLOBJS) shell utilpak1 $(DEPENDS) |
341 | 28 $(CHMOD) 755 $(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 | |
356 | 42 $(LEVEL1FILES): $(LEVEL1)/CMDS/$@ |
43 -$(SOFTLINK) $(LEVEL1)/CMDS/$@ | |
160 | 44 |
0 | 45 clean: |
335
9edb1a203a78
Moved level2/CMDS to here, as level2 will be deprecated
boisy
parents:
328
diff
changeset
|
46 $(RM) $(ALLOBJS) $(LEVEL1FILES) shell utilpak1 |
0 | 47 |
341 | 48 showobjs: |
49 @$(ECHO) $(ALLOBJS) shell utilpak1 | |
50 | |
100 | 51 identify: |
52 $(IDENT_SHORT) $(ALLOBJS) |