Mercurial > hg > Members > kono > nitros9-code
annotate level2/cmds/makefile @ 421:2cf4b593cebf
edit now pulled from level1
author | boisy |
---|---|
date | Sun, 22 Sep 2002 14:54:50 +0000 |
parents | e0c4e91bff5e |
children | a71313ae3643 |
rev | line source |
---|---|
0 | 1 include ../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
4 | |
327 | 5 CMDS = attr binex build cmp cobbler copy date \ |
421 | 6 deiniz del deldir dir display dsave dump echo edit error exbin format \ |
340 | 7 free grfdrv help ident iniz link list load login makdir mdir \ |
414
e5dfb2271401
Added modpatch to makefile, and modpatch.asm is now os9dump -a output of
boisy
parents:
404
diff
changeset
|
8 merge mfree modpatch montype procs pwd pxd rename save \ |
417
209e67e34d04
Shell+ 2.2a is now standard shell with Level 2 and NitrOS-9
boisy
parents:
414
diff
changeset
|
9 setime shell_21 shell_22a sleep tee tmode tsmon unlink \ |
0 | 10 verify wcreate xmode |
321 | 11 SUBS = gfx2 gfx inkey |
0 | 12 |
417
209e67e34d04
Shell+ 2.2a is now standard shell with Level 2 and NitrOS-9
boisy
parents:
414
diff
changeset
|
13 SHELLMODS = shell_22a deiniz display echo iniz link load save unlink |
209e67e34d04
Shell+ 2.2a is now standard shell with Level 2 and NitrOS-9
boisy
parents:
414
diff
changeset
|
14 UTILPAK1 = attr build copy date del deldir dir list makdir mdir \ |
209e67e34d04
Shell+ 2.2a is now standard shell with Level 2 and NitrOS-9
boisy
parents:
414
diff
changeset
|
15 merge mfree procs pwd pxd rename sleep tee tmode |
0 | 16 |
356 | 17 LEVEL1FILES = attr.asm binex.asm build.asm cmp.asm cobbler.asm copy.asm date.asm deiniz.asm del.asm deldir.asm \ |
421 | 18 dir.asm display.asm dsave.asm dump.asm echo.asm edit.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
|
19 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
|
20 save.asm setime.asm sleep.asm tee.asm tmode.asm tuneport.asm tsmon.asm verify.asm xmode.asm |
160 | 21 |
341 | 22 ALLOBJS = $(CMDS) $(SUBS) |
23 | |
335
9edb1a203a78
Moved level2/CMDS to here, as level2 will be deprecated
boisy
parents:
328
diff
changeset
|
24 # Files not compilable by os9asm: config |
220
7fed7dcadaee
Moved smartwatch commands to 3rdparty/utils/smartwatch
boisy
parents:
219
diff
changeset
|
25 all: $(ALLOBJS) shell utilpak1 $(DEPENDS) |
341 | 26 $(CHMOD) 755 $(ALLOBJS) shell utilpak1 |
0 | 27 |
28 shell: $(SHELLMODS) $(DEPENDS) | |
29 $(MERGE) $(SHELLMODS)>$@ | |
30 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***" | |
31 @ls -l $@ | |
32 @$(ECHO) | |
33 | |
34 utilpak1: $(UTILPAK1) $(DEPENDS) | |
35 $(MERGE) $(UTILPAK1)>$@ | |
36 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***" | |
37 @ls -l $@ | |
38 @$(ECHO) | |
39 | |
356 | 40 $(LEVEL1FILES): $(LEVEL1)/CMDS/$@ |
41 -$(SOFTLINK) $(LEVEL1)/CMDS/$@ | |
160 | 42 |
0 | 43 clean: |
335
9edb1a203a78
Moved level2/CMDS to here, as level2 will be deprecated
boisy
parents:
328
diff
changeset
|
44 $(RM) $(ALLOBJS) $(LEVEL1FILES) shell utilpak1 |
0 | 45 |
341 | 46 showobjs: |
47 @$(ECHO) $(ALLOBJS) shell utilpak1 | |
48 | |
100 | 49 identify: |
50 $(IDENT_SHORT) $(ALLOBJS) |