84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
81 lines
2.1 KiB
Makefile
81 lines
2.1 KiB
Makefile
# $NetBSD: bsd.klinks.mk,v 1.11 2013/08/21 15:26:44 matt Exp $
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
KLINK_MACHINE?= ${MACHINE}
|
|
|
|
##### Default values
|
|
.if !defined(S)
|
|
.if defined(NETBSDSRCDIR)
|
|
S= ${NETBSDSRCDIR}/sys
|
|
.elif defined(BSDSRCDIR)
|
|
S= ${BSDSRCDIR}/sys
|
|
.else
|
|
S= /sys
|
|
.endif
|
|
.endif
|
|
|
|
CLEANFILES+= machine ${MACHINE_CPU} ${KLINK_MACHINE}
|
|
.if ${KLINK_MACHINE} == "sun2" || ${KLINK_MACHINE} == "sun3"
|
|
CLEANFILES+= sun68k
|
|
.elif ${KLINK_MACHINE} == "sparc64"
|
|
CLEANFILES+= sparc
|
|
.elif ${KLINK_MACHINE} == "i386"
|
|
CLEANFILES+= x86
|
|
.elif ${KLINK_MACHINE} == "amd64"
|
|
CLEANFILES+= x86 i386
|
|
.elif ${KLINK_MACHINE} == "evbmips"
|
|
CLEANFILES+= algor sbmips
|
|
.endif
|
|
|
|
.if defined(XEN_BUILD) || ${KLINK_MACHINE} == "xen"
|
|
CLEANFILES+= xen xen-ma/machine # xen-ma
|
|
CPPFLAGS+= -I${.OBJDIR}/xen-ma
|
|
.if ${MACHINE_CPU} == "i386"
|
|
CLEANFILES+= x86
|
|
.endif
|
|
.endif
|
|
|
|
# XXX. This should be done a better way. It's @'d to reduce visual spew.
|
|
# XXX .BEGIN is used to make sure the links are done before anything else.
|
|
.if !make(obj) && !make(clean) && !make(cleandir)
|
|
.BEGIN:
|
|
@rm -f machine && \
|
|
ln -s $S/arch/${KLINK_MACHINE}/include machine
|
|
@rm -f ${KLINK_MACHINE} && \
|
|
ln -s $S/arch/${KLINK_MACHINE}/include ${KLINK_MACHINE}
|
|
@if [ -d $S/arch/${MACHINE_CPU} ]; then \
|
|
rm -f ${MACHINE_CPU} && \
|
|
ln -s $S/arch/${MACHINE_CPU}/include ${MACHINE_CPU}; \
|
|
fi
|
|
# XXX. it gets worse..
|
|
.if ${KLINK_MACHINE} == "sun2" || ${KLINK_MACHINE} == "sun3"
|
|
@rm -f sun68k && \
|
|
ln -s $S/arch/sun68k/include sun68k
|
|
.endif
|
|
.if ${KLINK_MACHINE} == "sparc64"
|
|
@rm -f sparc && \
|
|
ln -s $S/arch/sparc/include sparc
|
|
.endif
|
|
.if ${KLINK_MACHINE} == "amd64"
|
|
@rm -f i386 && \
|
|
ln -s $S/arch/i386/include i386
|
|
.endif
|
|
.if ${MACHINE_CPU} == "i386" || ${MACHINE_CPU} == "x86_64"
|
|
@rm -f x86 && \
|
|
ln -s $S/arch/x86/include x86
|
|
.endif
|
|
.if defined(XEN_BUILD) || ${KLINK_MACHINE} == "xen"
|
|
@rm -f xen && \
|
|
ln -s $S/arch/xen/include xen
|
|
@rm -rf xen-ma && mkdir xen-ma && \
|
|
ln -s ../${XEN_BUILD:U${MACHINE_ARCH}} xen-ma/machine
|
|
.endif
|
|
.if ${KLINK_MACHINE} == "evbmips"
|
|
@rm -f algor && \
|
|
ln -s $S/arch/algor/include algor
|
|
@rm -f sbmips && \
|
|
ln -s $S/arch/sbmips/include sbmips
|
|
.endif
|
|
.endif
|