Mercurial > hg > Members > kono > nitros9-code
view 3rdparty/packages/fsim2/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 (2013-01-14) |
parents | 8b00f21d5b86 |
children | cfa46960b6bd |
line wrap: on
line source
ifndef NITROS9DIR NITROS9DIR = $(HOME)/nitros9 endif include $(NITROS9DIR)/rules.mak DEPENDS = ./makefile DSK_FLOPPY = fsim2.dsk DSK_DW3 = fsim2_dw3.dsk DSK_DW3_BECKER = fsim2_becker.dsk CMDS = fs f2 f3 f4 MD = $(LEVEL2)/coco3/modules DSKS = $(DSK_FLOPPY) $(DSK_DW3) $(DSK_DW3_BECKER) # We make our own bootfile and kernel track KERNEL_FLOPPY = $(MD)/rel_32 $(MD)/boot_1773_6ms $(MD)/krn KERNEL_DW3 = $(MD)/rel_32 $(MD)/boot_dw3 $(MD)/krn KERNEL_DW3_BECKER = $(MD)/rel_32 $(MD)/boot_dw3_becker $(MD)/krn BOOTFILE_FLOPPY = $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/rbf.mn \ $(MD)/rb1773.dr $(MD)/ddd0_40d.dd \ $(MD)/scf.mn $(MD)/vtio.dr \ $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ $(MD)/covdg_small.io $(MD)/term_vdg.dt \ $(MD)/vrn.dr $(MD)/ftdd.dd \ $(MD)/clock_60hz $(MD)/clock2_soft \ $(MD)/sysgo_dd BOOTFILE_DW3 = $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/rbf.mn \ $(MD)/rbdw3.dr $(MD)/dw3.sb $(MD)/ddx0.dd \ $(MD)/scf.mn $(MD)/vtio.dr \ $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ $(MD)/covdg_small.io $(MD)/term_vdg.dt \ $(MD)/vrn.dr $(MD)/ftdd.dd \ $(MD)/clock_60hz $(MD)/clock2_dw3 \ $(MD)/sysgo_dd BOOTFILE_DW3_BECKER = $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/rbf.mn \ $(MD)/rbdw3.dr $(MD)/dw3_becker.sb $(MD)/ddx0.dd \ $(MD)/scf.mn $(MD)/vtio.dr \ $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ $(MD)/covdg_small.io $(MD)/term_vdg.dt \ $(MD)/vrn.dr $(MD)/ftdd.dd \ $(MD)/clock_60hz $(MD)/clock2_dw3 \ $(MD)/sysgo_dd SUPPORTFILES = fa fd fp sf.standard ALLOBJS = $(CMDS) all: $(ALLOBJS) clean: dskclean $(RM) $(ALLOBJS) dsk: all $(DSKS) $(DSK_DW3): $(RM) $@ $(CD) $(LEVEL2)/coco3; make $(OS9FORMAT_DW3) -q $@ -n"Flight Simulator 2" $(MERGE) $(BOOTFILE_DW3)>os9boot $(MERGE) $(KERNEL_DW3)>kernel $(OS9GEN) $@ -b=os9boot -t=kernel $(RM) os9boot kernel $(MAKDIR) $@,CMDS $(CP) $(LEVEL2)/coco3/cmds/shell_21 $@,CMDS/shell $(OS9ATTR_EXEC) $@,CMDS/shell $(CP) $(CMDS) $@,CMDS $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);) $(OS9RENAME) $@,CMDS/fs AutoEx $(CP) $(SUPPORTFILES) $@,. $(foreach file, $(SUPPORTFILES), $(OS9ATTR_TEXT) $@,$(file);) $(DSK_DW3_BECKER): $(RM) $@ $(CD) $(LEVEL2)/coco3; make $(OS9FORMAT_DW3) -q $@ -n"Flight Simulator 2" $(MERGE) $(BOOTFILE_DW3_BECKER)>os9boot $(MERGE) $(KERNEL_DW3_BECKER)>kernel $(OS9GEN) $@ -b=os9boot -t=kernel $(RM) os9boot kernel $(MAKDIR) $@,CMDS $(CP) $(LEVEL2)/coco3/cmds/shell_21 $@,CMDS/shell $(OS9ATTR_EXEC) $@,CMDS/shell $(CP) $(CMDS) $@,CMDS $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);) $(OS9RENAME) $@,CMDS/fs AutoEx $(CP) $(SUPPORTFILES) $@,. $(foreach file, $(SUPPORTFILES), $(OS9ATTR_TEXT) $@,$(file);) $(DSK_FLOPPY): $(RM) $@ $(CD) $(LEVEL2)/coco3; make $(OS9FORMAT_SS35) -q $@ -n"Flight Simulator 2" $(MERGE) $(BOOTFILE_FLOPPY)>os9boot $(MERGE) $(KERNEL_FLOPPY)>kernel $(OS9GEN) $@ -b=os9boot -t=kernel $(RM) os9boot kernel $(MAKDIR) $@,CMDS $(CP) $(LEVEL2)/coco3/cmds/shell_21 $@,CMDS/shell $(OS9ATTR_EXEC) $@,CMDS/shell $(CP) $(CMDS) $@,CMDS $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);) $(OS9RENAME) $@,CMDS/fs AutoEx $(CP) $(SUPPORTFILES) $@,. $(foreach file, $(SUPPORTFILES), $(OS9ATTR_TEXT) $@,$(file);) dskcopy: dsk $(CP) $(DSKS) $(DSKDIR) dskclean: $(RM) $(DSKS) info: @$(ECHO) "*** Flight Simulator 2 ***" @$(foreach dsk, $(DSKS), $(ECHO) $(dsk);)