annotate bootman/makefile @ 2758:e4a0f58a5f9b

Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded. To fix this the code needed to set the envirornment variable that is in the rules.mak is now in the makefile(s) right before the include for the rules.mak file. This should fix the problem for those who do not have the NITROS9DIR envirornment variable preset.
author drencor-xeen
date Mon, 14 Jan 2013 14:37:46 -0600
parents 6c8f028e8c5e
children 1addfd8c9d5f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2758
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 2234
diff changeset
1 ifndef NITROS9DIR
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 2234
diff changeset
2 NITROS9DIR = $(HOME)/nitros9
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 2234
diff changeset
3 endif
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 2234
diff changeset
4 include $(NITROS9DIR)/rules.mak
2163
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
5
2234
6c8f028e8c5e Minor changes to modules
boisy
parents: 2233
diff changeset
6 all: bootman_coco_6551 bootman_coco3_6551 #bootman_loader
2191
d280490500a8 dw3 target added to makefile
boisy
parents: 2163
diff changeset
7
d280490500a8 dw3 target added to makefile
boisy
parents: 2163
diff changeset
8 bootman_loader: bootman_loader.a
d280490500a8 dw3 target added to makefile
boisy
parents: 2163
diff changeset
9 mamou $^ -o$@ -mb
d280490500a8 dw3 target added to makefile
boisy
parents: 2163
diff changeset
10
2234
6c8f028e8c5e Minor changes to modules
boisy
parents: 2233
diff changeset
11 bootman_coco_6551: bootman.r boot_config.r mach_coco.r llio_6551.r llbt_1773.r
2233
9b435e747ff2 CoCo and CoCO 3 versions
boisy
parents: 2232
diff changeset
12 $(LINKER) $^ -o=$@
9b435e747ff2 CoCo and CoCO 3 versions
boisy
parents: 2232
diff changeset
13
2234
6c8f028e8c5e Minor changes to modules
boisy
parents: 2233
diff changeset
14 bootman_coco3_6551: bootman.r boot_config.r mach_coco3.r llio_6551.r llbt_1773.r
2191
d280490500a8 dw3 target added to makefile
boisy
parents: 2163
diff changeset
15 $(LINKER) $^ -o=$@
2163
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
16
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
17 dsk: bootman
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
18 decb dskini bootman.dsk
2234
6c8f028e8c5e Minor changes to modules
boisy
parents: 2233
diff changeset
19 decb copy -b -2 bootman_coco_6551 bootman.dsk,BM6551.BIN
6c8f028e8c5e Minor changes to modules
boisy
parents: 2233
diff changeset
20 decb copy -b -2 bootman_coco3_6551 bootman.dsk,BM36551.BIN
2163
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
21
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
22 clean:
2234
6c8f028e8c5e Minor changes to modules
boisy
parents: 2233
diff changeset
23 -$(RM) *.r bootman_coco_6551 bootman_coco3_6551 bootman.dsk