e83f7ba2c9
. file- and functionality-compatible with previous situation (FreeBSD csu) (with a crt1.o -> crt0.o symlink in /usr/lib) . harmonizes source with netbsd . harmonizes linker invocation (e.g. clang) with netbsd . helpful to get some arm code in there for the arm port project
33 lines
753 B
Makefile
33 lines
753 B
Makefile
# $NetBSD: Makefile,v 1.28 2010/11/28 18:40:56 skrll Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
CSU_MACHINE_ARCH?= ${MACHINE_ARCH}
|
|
|
|
.if ${USE_COMPILERCRTSTUFF} != "yes"
|
|
|
|
ARCHDIR:= ${.PARSEDIR}/arch/${CSU_MACHINE_ARCH}
|
|
.PATH: ${ARCHDIR}
|
|
. include "${ARCHDIR}/Makefile.inc"
|
|
|
|
. include "${.PARSEDIR}/common/Makefile.inc"
|
|
|
|
.else
|
|
|
|
. if exists(${CSU_MACHINE_ARCH}_elf/Makefile)
|
|
SUBDIR= ${CSU_MACHINE_ARCH}_elf
|
|
. elif exists(${CSU_MACHINE_ARCH}/Makefile)
|
|
SUBDIR= ${CSU_MACHINE_ARCH}
|
|
. elif exists(${MACHINE_CPU}_elf/Makefile)
|
|
SUBDIR= ${MACHINE_CPU}_elf
|
|
. elif exists(${MACHINE_CPU}/Makefile)
|
|
SUBDIR= ${MACHINE_CPU}
|
|
. else
|
|
.BEGIN:
|
|
@echo no SUBDIR for ${MACHINE_ARCH}_elf, ${MACHINE_ARCH} nor \
|
|
${MACHINE_CPU}
|
|
@false
|
|
. endif
|
|
|
|
. include <bsd.subdir.mk>
|
|
.endif
|