Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/makefile @ 689:92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
was common, modified Makefile
author | boisy |
---|---|
date | Mon, 30 Dec 2002 03:36:33 +0000 |
parents | c7dda4211c00 |
children | cb66ee3d17b2 |
rev | line source |
---|---|
0 | 1 include ../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
4 | |
490 | 5 BASIC09FILES = runb.asm gfx.asm inkey.asm syscall.asm |
562 | 6 COCOCMDS = asm attr backup binex build cmp cobbler config copy date \ |
216 | 7 dcheck debug deiniz del deldir dir display dsave dump \ |
562 | 8 echo edit error exbin format free grfo help ident iniz link \ |
322 | 9 list load login makdir mdir merge mfree \ |
562 | 10 os9gen park printerr procs pwd pxd \ |
11 rename runb save setime shell sleep tee tmode tsmon \ | |
322 | 12 tuneport unlink verify xmode gfx inkey syscall |
13 DRAGONCMDS = cobbler_d64 format_d64 os9gen_d64 drvr51.dr go51 | |
562 | 14 ALLOBJS = $(COCOCMDS) $(DRAGONCMDS) |
0 | 15 |
16 all: $(ALLOBJS) | |
322 | 17 $(CHMOD) 755 $(ALLOBJS) |
0 | 18 |
689
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
19 pwd: pd.asm |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
20 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPWD=1 |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
21 |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
22 pxd: pd.asm |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
23 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPXD=1 |
92b575ffa143
Folded pxd.asm and pwd.asm into pd.asm for simplicity since almost all code
boisy
parents:
562
diff
changeset
|
24 |
0 | 25 clean: |
492 | 26 $(RM) $(ALLOBJS) $(BASIC09FILES) |
0 | 27 |
95 | 28 identify: |
29 $(IDENT_SHORT) $(ALLOBJS) | |
107 | 30 |
322 | 31 showallobjs: |
32 @$(ECHO) $(ALLOBJS) | |
33 | |
34 showcocoobjs: | |
562 | 35 @$(ECHO) $(COCOCMDS) |
322 | 36 |
37 showdragonobjs: | |
38 @$(ECHO) $(CMDS) $(DRAGONCMDS) | |
488
39bffcae0383
gfx, inkey and syscall are now linked from the Basic09 source directory
boisy
parents:
463
diff
changeset
|
39 |
39bffcae0383
gfx, inkey and syscall are now linked from the Basic09 source directory
boisy
parents:
463
diff
changeset
|
40 $(BASIC09FILES): $(BASEDIR)/3rdparty/packages/basic09/$@ |
39bffcae0383
gfx, inkey and syscall are now linked from the Basic09 source directory
boisy
parents:
463
diff
changeset
|
41 -$(SOFTLINK) $(BASEDIR)/3rdparty/packages/basic09/$@ |