NetBSD/sys/arch/cats/conf/Makefile.cats.inc

32 lines
863 B
PHP

# $NetBSD: Makefile.cats.inc,v 1.16 2004/09/13 09:39:40 chs Exp $
MACHINE_ARCH= arm
CPPFLAGS+= -D${MACHINE}
.if (${OBJECT_FMT} == "ELF")
.if defined(ABLEELF) && (${ABLEELF} == "1")
# use a standard ELF format, adjusted to align areas
LINKFLAGS= -T ${THISARM}/conf/ldscript.elf
.else
# Need to convert the kernel from ELF to a.out so that the firmware
# can load it.
LINKFLAGS= -T ldscript
SYSTEM_LD_HEAD_EXTRA+=; \
( cat ${ARM}/conf/kern.ldscript.head ; \
OBJDUMP=${OBJDUMP} ${HOST_SH} ${ARM}/conf/mkldscript.sh \
${SYSTEM_OBJ} ; \
cat ${ARM}/conf/kern.ldscript.tail ) > ldscript
SYSTEM_LD_TAIL_EXTRA+=; \
echo "${DBSYM} $@ || true"; \
${DBSYM} $@ || true; \
echo \
"${OBJCOPY} -O a.out-arm-netbsd -R .ident -R .arm.atpcs -R .comment $@ $@.aout"; \
${OBJCOPY} -O a.out-arm-netbsd -R .ident -R .arm.atpcs -R .comment $@ $@.aout
.endif
.endif