Mercurial > hg > Members > kono > nitros9-code
view level1/coco/bootroms/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 | 9dd4f422aac7 |
children | 1addfd8c9d5f |
line wrap: on
line source
ifndef NITROS9DIR NITROS9DIR = $(HOME)/nitros9 endif include $(NITROS9DIR)/rules.mak # Module directory MD = ../modules # Commands directory CD = ../cmds DEPENDS = ./makefile KERNEL_ROM = $(MD)/rel $(MD)/krn $(MD)/krnp2 $(MD)/init $(MD)/boot_rom BOOTFILE_ROM = $(MD)/rominfo $(MD)/ioman \ $(MD)/scf.mn $(MD)/vtio.dr \ $(MD)/covdg.io \ $(MD)/term32.dt \ $(MD)/clock_60hz $(MD)/clock2_soft BOOTROMS = nos96809l1.rom KERNELS = kernel_rom ALLROMS = $(BOOTROMS) all: $(ALLROMS) # Bootfiles nos96809l1.rom: $(BOOTFILE_ROM) $(KERNEL_ROM) $(DEPENDS) $(MERGE) $(BOOTFILE_ROM)>$@.tmp $(PADROM) 11776 $@.tmp $(MERGE) $(KERNEL_ROM)>kernel_rom $(PADROM) 4592 kernel_rom $(MERGE) $@.tmp kernel_rom>$@.tmp2 $(MERGE) $@.tmp2 $(MD)/vectors>$@ $(RM) $@.tmp $@.tmp2 # Kernels kernel_rom: $(KERNEL_ROM) $(DEPENDS) $(MERGE) $(KERNEL_ROM)>$@ clean: $(RM) $(ALLROMS) $(KERNELS)