# HG changeset patch # User Mychaela Falconia # Date 1550038902 0 # Node ID 58d3a0634272192176d01741e80bd955268c7648 # Parent 0615d54c2d2ee2066c2b6bf72f1cd282a44380fc target-utils/*/Makefile: better construct for crt0.S symlink diff -r 0615d54c2d2e -r 58d3a0634272 target-utils/buzplayer/Makefile --- a/target-utils/buzplayer/Makefile Wed Feb 13 06:14:30 2019 +0000 +++ b/target-utils/buzplayer/Makefile Wed Feb 13 06:21:42 2019 +0000 @@ -15,8 +15,8 @@ all: ${PROG}.srec -crt0.S: ../env/crt0.S - ln -s $< . +crt0.S: + ln -s ../env/crt0.S . ${PROG}.elf: ${OBJS} ${LIBS} ${LDS} ${LD} -N --defsym Base_addr=0x800750 --defsym stack_bottom=0x83FFFC \ diff -r 0615d54c2d2e -r 58d3a0634272 target-utils/c139explore/Makefile --- a/target-utils/c139explore/Makefile Wed Feb 13 06:14:30 2019 +0000 +++ b/target-utils/c139explore/Makefile Wed Feb 13 06:21:42 2019 +0000 @@ -16,8 +16,8 @@ all: ${PROG}.bin -crt0.S: ../env/crt0.S - ln -s $< . +crt0.S: + ln -s ../env/crt0.S . ${PROG}.elf: ${OBJS} ${LIBS} ${LDS} ${LD} -N -T ${LDS} -o $@ ${OBJS} ${LIBS} ${LIBGCC} diff -r 0615d54c2d2e -r 58d3a0634272 target-utils/calversion/Makefile --- a/target-utils/calversion/Makefile Wed Feb 13 06:14:30 2019 +0000 +++ b/target-utils/calversion/Makefile Wed Feb 13 06:21:42 2019 +0000 @@ -15,8 +15,8 @@ all: ${PROG}.srec -crt0.S: ../env/crt0.S - ln -s $< . +crt0.S: + ln -s ../env/crt0.S . ${PROG}.elf: ${OBJS} ${LIBS} ${LDS} ${LD} -N --defsym Base_addr=0x800750 --defsym stack_bottom=0x83FFFC \ diff -r 0615d54c2d2e -r 58d3a0634272 target-utils/flash-boot-test/Makefile --- a/target-utils/flash-boot-test/Makefile Wed Feb 13 06:14:30 2019 +0000 +++ b/target-utils/flash-boot-test/Makefile Wed Feb 13 06:21:42 2019 +0000 @@ -12,8 +12,8 @@ all: fbt-mode0.bin fbt-mode1.bin -crt0.S: ../env/crt0.S - ln -s $< . +crt0.S: + ln -s ../env/crt0.S . fbt-mode0.elf: ${OBJS} magic0.o ${LIBS} ${LDS} ${LD} -N -T ${LDS} -o $@ ${OBJS} magic0.o ${LIBS} ${LIBGCC} diff -r 0615d54c2d2e -r 58d3a0634272 target-utils/helloapp/Makefile --- a/target-utils/helloapp/Makefile Wed Feb 13 06:14:30 2019 +0000 +++ b/target-utils/helloapp/Makefile Wed Feb 13 06:21:42 2019 +0000 @@ -13,8 +13,8 @@ all: ${PROG}.srec -crt0.S: ../env/crt0.S - ln -s $< . +crt0.S: + ln -s ../env/crt0.S . ${PROG}.elf: ${OBJS} ${LIBS} ${LDS} ${LD} -N --defsym Base_addr=0x800750 --defsym stack_bottom=0x83FFFC \ diff -r 0615d54c2d2e -r 58d3a0634272 target-utils/loadagent/Makefile --- a/target-utils/loadagent/Makefile Wed Feb 13 06:14:30 2019 +0000 +++ b/target-utils/loadagent/Makefile Wed Feb 13 06:21:42 2019 +0000 @@ -15,8 +15,8 @@ all: ${PROG}.srec -crt0.S: ../env/crt0.S - ln -s $< . +crt0.S: + ln -s ../env/crt0.S . ${PROG}.elf: ${OBJS} ${LIBS} ${LDS} ${LD} -N --defsym Base_addr=0x838000 --defsym stack_bottom=0x83FFFC \ diff -r 0615d54c2d2e -r 58d3a0634272 target-utils/pirexplore/Makefile --- a/target-utils/pirexplore/Makefile Wed Feb 13 06:14:30 2019 +0000 +++ b/target-utils/pirexplore/Makefile Wed Feb 13 06:21:42 2019 +0000 @@ -15,8 +15,8 @@ all: ${PROG}.srec -crt0.S: ../env/crt0.S - ln -s $< . +crt0.S: + ln -s ../env/crt0.S . ${PROG}.elf: ${OBJS} ${LIBS} ${LDS} ${LD} -N --defsym Base_addr=0x800750 --defsym stack_bottom=0x87FFFC \ diff -r 0615d54c2d2e -r 58d3a0634272 target-utils/simtest/Makefile --- a/target-utils/simtest/Makefile Wed Feb 13 06:14:30 2019 +0000 +++ b/target-utils/simtest/Makefile Wed Feb 13 06:21:42 2019 +0000 @@ -15,8 +15,8 @@ all: ${PROG}.srec -crt0.S: ../env/crt0.S - ln -s $< . +crt0.S: + ln -s ../env/crt0.S . ${PROG}.elf: ${OBJS} ${LIBS} ${LDS} ${LD} -N --defsym Base_addr=0x800750 --defsym stack_bottom=0x83FFFC \