Mercurial > hg > Members > kono > nitros9-code
comparison level1/cmds/makefile @ 322:0d2d4a28c490
cmp.asm and help.asm now assemble correctly
removed cmp and help binaries
Modifed makefile
author | boisy |
---|---|
date | Wed, 24 Jul 2002 04:17:21 +0000 |
parents | f15de6a06ad6 |
children | eb24764bc7b7 |
comparison
equal
deleted
inserted
replaced
321:2c0ddf807efa | 322:0d2d4a28c490 |
---|---|
1 include ../../Makefile.rules | 1 include ../../Makefile.rules |
2 | 2 |
3 DEPENDS = ./Makefile | 3 DEPENDS = ./Makefile |
4 | 4 |
5 CMDS = asm attr backup binex build cobbler cobbler_d64 config copy date \ | 5 COCOCMDS_D1 = attr backup binex build cmp copy date \ |
6 dcheck debug deiniz del deldir dir display dsave dump \ | 6 dcheck debug deiniz del deldir dir display dsave dump \ |
7 echo edit exbin format format_d64 free grfo ident iniz link \ | 7 echo edit exbin free help ident iniz link \ |
8 list load login makdir mdir merge mfree os9gen os9gen_d64 \ | 8 list load login makdir mdir merge mfree \ |
9 park printerr procs pwd pxd \ | 9 printerr procs pwd pxd \ |
10 rename save setime shell sleep tee tmode tsmon \ | 10 rename save setime shell sleep tee tmode tsmon \ |
11 tuneport unlink verify xmode | 11 tuneport unlink verify xmode gfx inkey syscall |
12 SUBRTNS = inkey syscall gfx | 12 COCOCMDS_D2 = asm config help copy del dir os9gen rename park |
13 SYSMODS = drvr51.dr go51 | 13 COCOCMDS = cobbler format os9gen grfo |
14 ALLOBJS = $(CMDS) $(SUBRTNS) $(SYSMODS) | 14 DRAGONCMDS = cobbler_d64 format_d64 os9gen_d64 drvr51.dr go51 |
15 ALLOBJS = $(COCOCMDS_D1) $(COCOCMDS_D2) $(DRAGONCMDS) | |
15 | 16 |
16 all: $(ALLOBJS) | 17 all: $(ALLOBJS) |
17 $(CHMOD) a+rx $(ALLOBJS) | 18 $(CHMOD) 755 $(ALLOBJS) |
18 | 19 |
19 clean: | 20 clean: |
20 $(RM) $(ALLOBJS) | 21 $(RM) $(ALLOBJS) |
21 | 22 |
22 identify: | 23 identify: |
23 $(IDENT_SHORT) $(ALLOBJS) | 24 $(IDENT_SHORT) $(ALLOBJS) |
24 | 25 |
25 showobjs: | 26 showallobjs: |
26 @echo $(ALLOBJS) | 27 @$(ECHO) $(ALLOBJS) |
28 | |
29 showcocoobjs: | |
30 @$(ECHO) $(CMDS) $(COCOCMDS) | |
31 | |
32 showcocoobjs_d1: | |
33 @$(ECHO) $(CMDS) $(COCOCMDS_D1) | |
34 | |
35 showcocoobjs_d2: | |
36 @$(ECHO) $(CMDS) $(COCOCMDS_D2) | |
37 | |
38 showdragonobjs: | |
39 @$(ECHO) $(CMDS) $(DRAGONCMDS) |