Mercurial > hg > Members > kono > nitros9-code
view level3/coco3/bootfiles/makefile @ 2898:28ed72477814 lwtools-port
Dummy merge of default branch into lwtools
hg -y merge --tool=internal:fail default
hg revert --all --no-backup --rev .
hg resolve -a -m
This dummy merge discards any changes from the default branch
so that the result is the same as what lwtools already had.
When merging back to default branch later, the discarded
changes will be discarded there also, so the result
will be that the default branch will contain what
the lwtools branch had before these merges.
Only scripts/burst was "rescued" from default branch.
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sat, 11 Jan 2014 18:40:44 +0100 |
parents | b14ea1930107 1addfd8c9d5f |
children | c1a7b7c0cebc |
line wrap: on
line source
include $(NITROS9DIR)/rules.mak # Module directory MD = ../modules DEPENDS = ./makefile KERNEL_1773 = $(MD)/rel_80 $(MD)/boot_1773_6ms $(MD)/krn KERNEL_1773_50HZ = $(MD)/rel_80_50hz $(MD)/boot_1773_6ms $(MD)/krn KERNEL_DW = $(MD)/rel_80 $(MD)/boot_dw $(MD)/krn # NitrOS-9 disk bootfile to allow booting from WD1773 disk controller BOOTFILE_40D = $(MD)/scf.mn \ $(MD)_end \ $(MD)/rbf.mn \ $(MD)/rb1773.dr $(MD)/d0_40d.dd $(MD)/d1_40d.dd \ $(MD)/d2_40d.dd $(MD)/ddd0_40d.dd \ $(MD)_end \ $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/vtio.dr \ $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ $(MD)/cowin.io $(MD)/covdg.io \ $(MD)/term_win80.dt \ $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ $(MD)/clock_60hz $(MD)/clock2_soft BOOTFILE_80D = $(MD)/scf.mn \ $(MD)_end \ $(MD)/rbf.mn \ $(MD)/rb1773.dr $(MD)/d0_80d.dd $(MD)/d1_40d.dd \ $(MD)/d2_40d.dd $(MD)/ddd0_80d.dd \ $(MD)_end \ $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/vtio.dr \ $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ $(MD)/cowin.io $(MD)/covdg.io \ $(MD)/term_win80.dt \ $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ $(MD)/clock_60hz $(MD)/clock2_soft BOOTFILE_40D_50HZ = $(MD)/scf.mn \ $(MD)_end \ $(MD)/rbf.mn \ $(MD)/rb1773.dr $(MD)/d0_40d.dd $(MD)/d1_40d.dd \ $(MD)/d2_40d.dd $(MD)/ddd0_40d.dd \ $(MD)_end \ $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/vtio.dr \ $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ $(MD)/cowin.io $(MD)/covdg.io \ $(MD)/term_win80.dt \ $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ $(MD)/clock_50hz $(MD)/clock2_soft BOOTFILE_80D_50HZ = $(MD)/scf.mn \ $(MD)_end \ $(MD)/rb1773.dr $(MD)/d0_80d.dd $(MD)/d1_40d.dd \ $(MD)/d2_40d.dd $(MD)/ddd0_80d.dd \ $(MD)_end \ $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/rbf.mn \ $(MD)/vtio.dr \ $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ $(MD)/cowin.io $(MD)/covdg.io \ $(MD)/term_win80.dt \ $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ $(MD)/clock_50hz $(MD)/clock2_soft BOOTFILES = bootfile_40d bootfile_40d_50hz bootfile_80d bootfile_80d_50hz bootfile_dw KERNELS = kernel_1773 kernel_1773_50hz kernel_dw ALLOBJS = $(BOOTFILES) $(KERNELS) all: $(ALLOBJS) # Bootfiles bootfile_40d: $(BOOTFILE_40D) $(DEPENDS) $(MERGE) $(BOOTFILE_40D)>$@ bootfile_40d_50hz: $(BOOTFILE_40D_50HZ) $(DEPENDS) $(MERGE) $(BOOTFILE_40D_50HZ)>$@ bootfile_80d: $(BOOTFILE_80D) $(DEPENDS) $(MERGE) $(BOOTFILE_80D)>$@ bootfile_80d_50hz: $(BOOTFILE_80D_50HZ) $(DEPENDS) $(MERGE) $(BOOTFILE_80D_50HZ)>$@ bootfile_dw: $(BOOTFILE_DW) $(DEPENDS) $(MERGE) $(BOOTFILE_DW)>$@ # Kernels kernel_1773: $(KERNEL_1773) $(DEPENDS) $(MERGE) $(KERNEL_1773)>$@ kernel_1773_50hz: $(KERNEL_1773_50HZ) $(DEPENDS) $(MERGE) $(KERNEL_1773_50HZ)>$@ kernel_dw: $(KERNEL_DW) $(DEPENDS) $(MERGE) $(KERNEL_DW)>$@ clean: $(RM) $(ALLOBJS)