Mercurial > hg > Members > kono > nitros9-code
view 3rdparty/packages/koronis/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 | d5220b220313 1addfd8c9d5f |
children | e4d95d73b8dd |
line wrap: on
line source
include ../../../rules.mak DEPENDS = ./makefile DSK_FLOPPY = koronis.dsk DSK_DW = koronis_dw.dsk DSK_DW_BECKER = koronis_becker.dsk CMDS = koronis MD = $(LEVEL2)/coco3/modules DSKS = $(DSK_FLOPPY) $(DSK_DW) $(DSK_DW_BECKER) # We make our own bootfile and kernel track KERNEL_FLOPPY = $(MD)/rel_32 $(MD)/boot_1773_6ms $(MD)/krn KERNEL_DW = $(MD)/rel_32 $(MD)/boot_dw $(MD)/krn KERNEL_DW_BECKER = $(MD)/rel_32 $(MD)/boot_dw_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)/clock_60hz $(MD)/clock2_soft $(MD)/sysgo_dd BOOTFILE_DW = $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/rbf.mn \ $(MD)/rbdw.dr $(MD)/dwio.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)/clock_60hz $(MD)/clock2_dw $(MD)/sysgo_dd BOOTFILE_DW_BECKER = $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/rbf.mn \ $(MD)/rbdw.dr $(MD)/dwio_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)/clock_60hz $(MD)/clock2_dw $(MD)/sysgo_dd SUPPORTFILES = SAVE1 SAVE2 crobot2.c ctitle.c korvar \ level01 level02 level03 level04 level05 level06 level07 \ level08 level09 level10 level11 level12 level13 level14 \ level15 level16 level17 level18 level19 level20 \ robotbuff sinwave ultek ALLOBJS = $(CMDS) all: $(ALLOBJS) clean: dskclean $(RM) $(ALLOBJS) dsk: all $(DSKS) $(DSK_FLOPPY): $(RM) $@ $(CD) $(LEVEL2)/coco3; make $(OS9FORMAT_SS35) -q $@ -n"Koronis Rift" $(MERGE) $(BOOTFILE_FLOPPY)>os9boot $(MERGE) $(KERNEL_FLOPPY)>kernel $(OS9GEN) $@ -b=os9boot -t=kernel $(RM) os9boot kernel $(MAKDIR) $@,CMDS $(OS9COPY) $(LEVEL2)/coco3/cmds/shell_21 $@,CMDS/shell $(OS9ATTR_EXEC) $@,CMDS/shell $(OS9COPY) $(CMDS) $@,CMDS $(OS9ATTR_EXEC) $(foreach file,$(CMDS),$@,CMDS/$(file)) $(OS9RENAME) $@,CMDS/koronis AutoEx $(OS9COPY) $(SUPPORTFILES) $@,. $(DSK_DW): $(RM) $@ $(CD) $(LEVEL2)/coco3; make $(OS9FORMAT_SS35) -q $@ -n"Koronis Rift" $(MERGE) $(BOOTFILE_DW)>os9boot $(MERGE) $(KERNEL_DW)>kernel $(OS9GEN) $@ -b=os9boot -t=kernel $(RM) os9boot kernel $(MAKDIR) $@,CMDS $(OS9COPY) $(LEVEL2)/coco3/cmds/shell_21 $@,CMDS/shell $(OS9ATTR_EXEC) $@,CMDS/shell $(OS9COPY) $(CMDS) $@,CMDS $(OS9ATTR_EXEC) $(foreach file,$(CMDS),$@,CMDS/$(file)) $(OS9RENAME) $@,CMDS/koronis AutoEx $(OS9COPY) $(SUPPORTFILES) $@,. $(OS9ATTR_TEXT) $(foreach file,$(SUPPORTFILES),$@,$(file)) $(DSK_DW_BECKER): $(RM) $@ $(CD) $(LEVEL2)/coco3; make $(OS9FORMAT_SS35) -q $@ -n"Koronis Rift" $(MERGE) $(BOOTFILE_DW_BECKER)>os9boot $(MERGE) $(KERNEL_DW_BECKER)>kernel $(OS9GEN) $@ -b=os9boot -t=kernel $(RM) os9boot kernel $(MAKDIR) $@,CMDS $(OS9COPY) $(LEVEL2)/coco3/cmds/shell_21 $@,CMDS/shell $(OS9ATTR_EXEC) $@,CMDS/shell $(OS9COPY) $(CMDS) $@,CMDS $(OS9ATTR_EXEC) $(foreach file,$(CMDS),$@,CMDS/$(file)) $(OS9RENAME) $@,CMDS/koronis AutoEx $(OS9COPY) $(SUPPORTFILES) $@,. $(OS9ATTR_TEXT) $(foreach file,$(SUPPORTFILES),$@,$(file)) dskcopy: dsk $(CP) $(DSKS) $(DSKDIR) dskclean: $(RM) $(DSKS) info: @$(ECHO) "*** Koronis Rift ***" @$(foreach dsk, $(DSKS), $(ECHO) $(dsk);)