annotate 3rdparty/packages/rof/makefile @ 1934:af946652495d

Makefiles reflect new module names
author boisy
date Sat, 26 Nov 2005 21:35:19 +0000
parents 1b23a41c674d
children c8bb06c82d68
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1318
diff changeset
1 include ../../../rules.mak
584
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
2
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1318
diff changeset
3 DEPENDS = ./makefile
584
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
4
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
5 DISK = rof.dsk
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
6 CMDS = rescue
1371
1ed7c47503e8 More changes
boisy
parents: 1363
diff changeset
7 MD = $(6809L2)/modules
750
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
8
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
9 # We make our own bootfile and kernel track
1638
1b23a41c674d Updated makefiles
boisy
parents: 1371
diff changeset
10 KERNEL = $(MD)/rel_32 $(MD)/boot_1773_6ms $(MD)/krn
1b23a41c674d Updated makefiles
boisy
parents: 1371
diff changeset
11 OS9BOOT = $(MD)/krnp2 $(MD)/ioman $(MD)/init \
753
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
12 $(MD)/rbf.mn \
1638
1b23a41c674d Updated makefiles
boisy
parents: 1371
diff changeset
13 $(MD)/rb1773.dr $(MD)/ddd0_40d.dd \
1934
af946652495d Makefiles reflect new module names
boisy
parents: 1638
diff changeset
14 $(MD)/scf.mn $(MD)/vtio.dr \
1311
e7cac8de00e9 Updated Makefiles to build bootfiles from new module filenames
boisy
parents: 1129
diff changeset
15 $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \
1934
af946652495d Makefiles reflect new module names
boisy
parents: 1638
diff changeset
16 $(MD)/covdg_small.io $(MD)/term_vdg.dt \
1318
a543ba9d856b Makefiles now reference sysgo instead of cc3go
boisy
parents: 1311
diff changeset
17 $(MD)/clock_60hz $(MD)/clock2_soft $(MD)/sysgo_dd
750
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
18
585
a93ff297742a Fixed small space problem
boisy
parents: 584
diff changeset
19 SUPPORTFILES = body heads larms legs lips panel1 rofvar rship.c rtitle.c scores
584
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
20
809
boisy
parents: 807
diff changeset
21 ALLOBJS = $(CMDS)
boisy
parents: 807
diff changeset
22
584
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
23 all: $(ALLOBJS)
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
24
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
25 clean: dskclean
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
26 $(RM) $(ALLOBJS)
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
27
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
28 dsk: all
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
29 $(RM) $(DISK)
1371
1ed7c47503e8 More changes
boisy
parents: 1363
diff changeset
30 $(CD) $(6809L2); make
960
ea69ed12af12 Added OS9FORMAT macros which inherently specify the disk format, so that
boisy
parents: 809
diff changeset
31 $(OS9FORMAT_SS35) $(DISK) -n"Rescue on Fractalus"
750
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
32 $(MERGE) $(OS9BOOT)>os9boot
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
33 $(MERGE) $(KERNEL)>kernel_1773
1036
f174634f2306 added new options for os9gen
boisy
parents: 960
diff changeset
34 $(OS9GEN) $(DISK) -t=os9boot -b=kernel_1773
759
d7875e9326c3 Changed
boisy
parents: 753
diff changeset
35 $(RM) os9boot kernel_1773
749
ec1909ff0764 Updated Makefile
boisy
parents: 585
diff changeset
36 $(MAKDIR) $(DISK),CMDS
1371
1ed7c47503e8 More changes
boisy
parents: 1363
diff changeset
37 $(CP) $(6809L2)/CMDS/shell_21 $(DISK),CMDS/shell
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1121
diff changeset
38 $(OS9ATTR_EXEC) $(DISK),CMDS/shell
753
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
39 $(CP) $(CMDS) $(DISK),CMDS
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1121
diff changeset
40 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $(DISK),CMDS/$(file);)
753
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
41 $(OS9RENAME) $(DISK),CMDS/rescue AutoEx
749
ec1909ff0764 Updated Makefile
boisy
parents: 585
diff changeset
42 $(CP) $(SUPPORTFILES) $(DISK),.
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1121
diff changeset
43 $(foreach file, $(SUPPORTFILES), $(OS9ATTR_TEXT) $(DISK),$(file);)
584
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
44
1121
6a058c03adb1 More Makefile changes
boisy
parents: 1036
diff changeset
45 dskcopy: dsk
6a058c03adb1 More Makefile changes
boisy
parents: 1036
diff changeset
46 $(CP) $(DISK) $(DSKDIR)
6a058c03adb1 More Makefile changes
boisy
parents: 1036
diff changeset
47
584
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
48 dskclean:
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
49 $(RM) $(DISK)