Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/packages/kyumgai/makefile @ 1129:c847e6ee341d
Removed CHMODs now that os9 attrs are in place
author | boisy |
---|---|
date | Mon, 14 Apr 2003 02:58:44 +0000 |
parents | 85eed1cde1b7 |
children | e7cac8de00e9 |
rev | line source |
---|---|
772 | 1 include ../../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
4 | |
5 DISK = kyumgai.dsk | |
6 CMDS = ninja ninja.snd1 ninja.snd2 | |
7 MD = $(LEVEL2)/MODULES | |
8 | |
9 # We make our own bootfile and kernel track | |
10 KERNEL = $(MD)/rel $(MD)/boot_1773 $(MD)/os9p1 | |
11 OS9BOOT = $(MD)/os9p2 $(MD)/ioman $(MD)/init \ | |
12 $(MD)/rbf.mn \ | |
13 $(MD)/cc3disk.dr $(MD)/ddd0_40d.dd \ | |
14 $(MD)/scf.mn $(MD)/cc3io.dr \ | |
15 $(MD)/keydrv $(MD)/joydrv_joy $(MD)/snddrv \ | |
774 | 16 $(MD)/vdgint_small.io $(MD)/term_vdg.dt \ |
772 | 17 $(MD)/clock_soft $(MD)/cc3go |
18 | |
19 SUPPORTFILES = backgnd.dat backgnd2.dat bigblocks.dat blakguy.dat \ | |
20 gameover.dat giant.dat kyumgai.pla level1.dat level2.dat \ | |
21 level3.dat level4.dat level5.dat level6.dat level7.dat \ | |
22 level8.dat monmap1.dat monmap2.dat monmap3.dat monmap4.dat \ | |
23 monmap5.dat monmap6.dat monmap7.dat monmap8.dat ninja.dat \ | |
24 objects.dat playscn.vef staffguy.dat tanguy.dat tobe.pla \ | |
25 tobe.vef window.dat winner.vef | |
26 | |
27 ALLOBJS = $(CMDS) | |
28 | |
29 all: $(ALLOBJS) | |
30 | |
31 clean: dskclean | |
32 $(RM) $(ALLOBJS) | |
33 | |
34 dsk: all | |
35 $(RM) $(DISK) | |
36 $(CD) $(LEVEL2); make | |
960
ea69ed12af12
Added OS9FORMAT macros which inherently specify the disk format, so that
boisy
parents:
805
diff
changeset
|
37 $(OS9FORMAT_DS40) $(DISK) -n"Kyum-Gai: To Be Ninja" |
772 | 38 $(MERGE) $(OS9BOOT)>os9boot |
39 $(MERGE) $(KERNEL)>kernel_1773 | |
1036 | 40 $(OS9GEN) $(DISK) -b=os9boot -t=kernel_1773 |
772 | 41 $(RM) os9boot kernel_1773 |
42 $(MAKDIR) $(DISK),CMDS | |
43 $(CP) $(LEVEL2)/CMDS/shell_21 $(DISK),CMDS/shell | |
1126 | 44 $(OS9ATTR_EXEC) $(DISK),CMDS/shell |
772 | 45 $(CP) $(CMDS) $(DISK),CMDS |
1126 | 46 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $(DISK),CMDS/$(file);) |
772 | 47 $(OS9RENAME) $(DISK),CMDS/ninja AutoEx |
48 $(CP) $(SUPPORTFILES) $(DISK),. | |
1126 | 49 $(foreach file, $(SUPPORTFILES), $(OS9ATTR_TEXT) $(DISK),$(file);) |
772 | 50 |
1121 | 51 dskcopy: dsk |
52 $(CP) $(DISK) $(DSKDIR) | |
53 | |
772 | 54 dskclean: |
55 $(RM) $(DISK) |