Home | History | Annotate | Line # | Download | only in conf
Makefile.evbarm.inc revision 1.3.4.4
      1  1.3.4.4  nathanw #	$NetBSD: Makefile.evbarm.inc,v 1.3.4.4 2002/04/01 07:39:45 nathanw Exp $
      2  1.3.4.4  nathanw 
      3  1.3.4.4  nathanw SYSTEM_LD_TAIL_EXTRA=; \
      4  1.3.4.4  nathanw 	echo "${DBSYM} $@ || true"; \
      5  1.3.4.4  nathanw 	${DBSYM} $@ || true
      6  1.3.4.2  nathanw 
      7  1.3.4.2  nathanw .if (${BOARDTYPE} == "integrator")
      8  1.3.4.2  nathanw GENASSYM_EXTRAS+=	${THISARM}/ifpga/genassym.cf
      9  1.3.4.2  nathanw SYSTEM_FIRST_OBJ=	intmmu.o
     10  1.3.4.2  nathanw SYSTEM_FIRST_SFILE=	${THISARM}/integrator/intmmu.S
     11  1.3.4.2  nathanw .endif
     12  1.3.4.2  nathanw 
     13  1.3.4.2  nathanw .if (${BOARDTYPE} == "iq80310")
     14  1.3.4.4  nathanw SYSTEM_FIRST_OBJ=	iq80310_start.o
     15  1.3.4.4  nathanw SYSTEM_FIRST_SFILE=	${THISARM}/iq80310/iq80310_start.S
     16  1.3.4.4  nathanw 
     17  1.3.4.4  nathanw LINKFLAGS=	-T ${THISARM}/conf/ldscript.iq80310
     18  1.3.4.4  nathanw 
     19  1.3.4.2  nathanw SYSTEM_LD_TAIL_EXTRA+=; \
     20  1.3.4.2  nathanw 	echo ${OBJCOPY} -S -O srec $@ $@.srec; \
     21  1.3.4.3  nathanw 	${OBJCOPY} -S -O srec $@ $@.srec; \
     22  1.3.4.3  nathanw 	echo ${OBJCOPY} -S -O binary $@ $@.bin; \
     23  1.3.4.3  nathanw 	${OBJCOPY} -S -O binary $@ $@.bin
     24  1.3.4.4  nathanw 
     25  1.3.4.4  nathanw EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.srec@}
     26  1.3.4.4  nathanw EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.bin@}
     27  1.3.4.4  nathanw .endif
     28  1.3.4.4  nathanw 
     29  1.3.4.4  nathanw .if (${BOARDTYPE} == "iq80321")
     30  1.3.4.4  nathanw SYSTEM_FIRST_OBJ=	iq80321_start.o
     31  1.3.4.4  nathanw SYSTEM_FIRST_SFILE=	${THISARM}/iq80321/iq80321_start.S
     32  1.3.4.4  nathanw 
     33  1.3.4.4  nathanw LINKFLAGS=	-T ${THISARM}/conf/ldscript.iq80321
     34  1.3.4.4  nathanw 
     35  1.3.4.4  nathanw SYSTEM_LD_TAIL_EXTRA+=; \
     36  1.3.4.4  nathanw 	echo ${OBJCOPY} -S -O srec $@ $@.srec; \
     37  1.3.4.4  nathanw 	${OBJCOPY} -S -O srec $@ $@.srec; \
     38  1.3.4.4  nathanw 	echo ${OBJCOPY} -S -O binary $@ $@.bin; \
     39  1.3.4.4  nathanw 	${OBJCOPY} -S -O binary $@ $@.bin
     40  1.3.4.4  nathanw 
     41  1.3.4.2  nathanw EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.srec@}
     42  1.3.4.3  nathanw EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.bin@}
     43  1.3.4.2  nathanw .endif
     44