Mercurial > hg > Members > kono > nitros9-code
changeset 2942:195b041299ec
d64/dalpha bootfiles: Do not copy the makefile into the bootfile
Thanks to Christopher R. Hawks for spotting this.
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sun, 26 Jan 2014 21:04:07 +0100 |
parents | 4446149f7ea9 |
children | bf97abc5bddf |
files | level1/d64/bootfiles/makefile level1/dalpha/bootfiles/makefile |
diffstat | 2 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/level1/d64/bootfiles/makefile Sat Jan 25 23:22:30 2014 +0100 +++ b/level1/d64/bootfiles/makefile Sun Jan 26 21:04:07 2014 +0100 @@ -119,22 +119,22 @@ @$(ECHO) $(BOOTFILE_COVDG_DS40) bootfile_covdg_ds40: $(BOOTFILE_COVDG_DS40) $(DEPENDS) - $(MERGE) $^ > $@ + $(MERGE) $(BOOTFILE_COVDG_DS40) > $@ bootfile_cohr_ds40: $(BOOTFILE_COHR_DS40) $(DEPENDS) - $(MERGE) $^ > $@ + $(MERGE) $(BOOTFILE_COHR_DS40) > $@ bootfile_covdg_ds80: $(BOOTFILE_COVDG_DS80) $(DEPENDS) - $(MERGE) $^ > $@ + $(MERGE) $(BOOTFILE_COVDG_DS80) > $@ bootfile_cohr_ds80: $(BOOTFILE_COHR_DS80) $(DEPENDS) - $(MERGE) $^ > $@ + $(MERGE) $(BOOTFILE_COHR_DS80) > $@ bootfile_covdg_ss40: $(BOOTFILE_COVDG_SS40) $(DEPENDS) - $(MERGE) $^ > $@ + $(MERGE) $(BOOTFILE_COVDG_SS40) > $@ bootfile_cohr_ss40: $(BOOTFILE_COHR_SS40) $(DEPENDS) - $(MERGE) $^ > $@ + $(MERGE) $(BOOTFILE_COHR_SS40) > $@ kernel: $(KERNEL) $(DEPENDS) $(MERGE) $(KERNEL)>$@
--- a/level1/dalpha/bootfiles/makefile Sat Jan 25 23:22:30 2014 +0100 +++ b/level1/dalpha/bootfiles/makefile Sun Jan 26 21:04:07 2014 +0100 @@ -93,16 +93,16 @@ # Dragon Alpha Disk boot bootfile_covdg_ss80: $(BOOTFILE_COVDG_SS80) $(DEPENDS) - $(MERGE) $^ > $@ + $(MERGE) $(BOOTFILE_COVDG_SS80) > $@ bootfile_cohr_ss80: $(BOOTFILE_COHR_SS80) $(DEPENDS) - $(MERGE) $^ > $@ + $(MERGE) $(BOOTFILE_COHR_SS80) > $@ bootfile_covdg_ds80: $(BOOTFILE_COVDG_DS80) $(DEPENDS) - $(MERGE) $^ > $@ + $(MERGE) $(BOOTFILE_COVDG_DS80) > $@ bootfile_cohr_ds80: $(BOOTFILE_COHR_DS80) $(DEPENDS) - $(MERGE) $^ > $@ + $(MERGE) $(BOOTFILE_COHR_DS80) > $@ # Dragon Alpha WD2797 Kernel kernel: $(KERNEL) $(DEPENDS)