annotate 3rdparty/packages/sierra/leisuresuitlarry/makefile @ 2075:eb13221efaed

Updated
author boisy
date Fri, 21 Jul 2006 12:44:35 +0000
parents c8bb06c82d68
children 82113c6e5aa8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2075
eb13221efaed Updated
boisy
parents: 2064
diff changeset
1 include $(NITROS9DIR)/rules.mak
eb13221efaed Updated
boisy
parents: 2064
diff changeset
2
eb13221efaed Updated
boisy
parents: 2064
diff changeset
3 vpath %.asm ../objs_lsl
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
4
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1318
diff changeset
5 DEPENDS = ./makefile
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
6
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
7 DISK = lsl.dsk
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
8 CMDS = sierra mnln scrn shdw
2064
c8bb06c82d68 Changes for new NitrOS-9 directory structure
boisy
parents: 1934
diff changeset
9 MD = $(LEVEL2)/coco3/modules
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
10
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
11 # We make our own bootfile and kernel track
1638
1b23a41c674d Updated makefiles
boisy
parents: 1371
diff changeset
12 KERNEL = $(MD)/rel_32 $(MD)/boot_1773_6ms $(MD)/krn
1b23a41c674d Updated makefiles
boisy
parents: 1371
diff changeset
13 OS9BOOT = $(MD)/krnp2 $(MD)/ioman $(MD)/init \
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
14 $(MD)/rbf.mn \
1638
1b23a41c674d Updated makefiles
boisy
parents: 1371
diff changeset
15 $(MD)/rb1773.dr $(MD)/ddd0_40d.dd \
1934
af946652495d Makefiles reflect new module names
boisy
parents: 1638
diff changeset
16 $(MD)/scf.mn $(MD)/vtio.dr \
1311
e7cac8de00e9 Updated Makefiles to build bootfiles from new module filenames
boisy
parents: 1129
diff changeset
17 $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \
1934
af946652495d Makefiles reflect new module names
boisy
parents: 1638
diff changeset
18 $(MD)/covdg_small.io $(MD)/term_vdg.dt \
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
19 $(MD)/vrn.dr $(MD)/vi.dd \
1318
a543ba9d856b Makefiles now reference sysgo instead of cc3go
boisy
parents: 1311
diff changeset
20 $(MD)/clock_60hz $(MD)/clock2_soft $(MD)/sysgo_dd
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
21
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
22 SUPPORTFILES = logDir object picDir sndDir tOC viewDir vol.0 \
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
23 vol.1 vol.2 vol.3 vol.4 words.tok
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
24
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
25 ALLOBJS = $(CMDS)
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
26
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
27 all: $(ALLOBJS)
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
28
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
29 clean: dskclean
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
30 $(RM) $(ALLOBJS)
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
31
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
32 dsk: all
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
33 $(RM) $(DISK)
2064
c8bb06c82d68 Changes for new NitrOS-9 directory structure
boisy
parents: 1934
diff changeset
34 $(CD) $(LEVEL2)/coco3; make
960
ea69ed12af12 Added OS9FORMAT macros which inherently specify the disk format, so that
boisy
parents: 806
diff changeset
35 $(OS9FORMAT_DS40) $(DISK) -n"Leisure Suit Larry"
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
36 $(MERGE) $(OS9BOOT)>os9boot
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
37 $(MERGE) $(KERNEL)>kernel_1773
1036
f174634f2306 added new options for os9gen
boisy
parents: 960
diff changeset
38 $(OS9GEN) $(DISK) -b=os9boot -t=kernel_1773
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
39 $(RM) os9boot kernel_1773
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
40 $(MAKDIR) $(DISK),CMDS
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
41 $(CP) $(CMDS) $(DISK),CMDS
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1121
diff changeset
42 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $(DISK),CMDS/$(file);)
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
43 $(OS9RENAME) $(DISK),CMDS/sierra AutoEx
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
44 $(CP) $(SUPPORTFILES) $(DISK),.
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1121
diff changeset
45 $(foreach file, $(SUPPORTFILES), $(OS9ATTR_TEXT) $(DISK),$(file);)
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
46
1121
6a058c03adb1 More Makefile changes
boisy
parents: 1036
diff changeset
47 dskcopy: dsk
6a058c03adb1 More Makefile changes
boisy
parents: 1036
diff changeset
48 $(CP) $(DISK) $(DSKDIR)
6a058c03adb1 More Makefile changes
boisy
parents: 1036
diff changeset
49
777
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
50 dskclean:
3a8f068cc438 Import of sources
boisy
parents:
diff changeset
51 $(RM) $(DISK)