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
56 lines
1.8 KiB
Text
56 lines
1.8 KiB
Text
# $NetBSD: Makefile.backend,v 1.3 2013/11/28 12:08:56 mrg Exp $
|
|
|
|
NOMAN= # defined
|
|
.if defined(__MINIX)
|
|
BINDIR= /usr/bin
|
|
.else
|
|
BINDIR= /usr/libexec
|
|
.endif # defined(__MINIX)
|
|
CPPFLAGS+= -I${GCCARCH} -I${BACKENDOBJ} \
|
|
${G_ALL_CFLAGS:M-D*} ${G_INCLUDES:M-I*:N-I.*}
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
DPADD= ${BACKENDOBJ}/libbackend.a ${LIBIBERTYOBJ}/libiberty.a
|
|
LDADD= -L${BACKENDOBJ} -lbackend -L${LIBIBERTYOBJ} -liberty
|
|
|
|
CLEANFILES+= ${PROG}-checksum.c ${PROG}-dummy dummy-checksum.d \
|
|
dummy-checksum.o genchecksum genchecksum.lo
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
# Don't auto-frob .y or .l files.
|
|
.l.c .y.c .y.h:
|
|
@true
|
|
|
|
CPPFLAGS.genchecksum.c+= -DGENERATOR_FILE -I${GCCARCH} -I${DIST}/include -I${BACKENDOBJ}
|
|
|
|
genchecksum.lo:
|
|
genchecksum: genchecksum.lo
|
|
${_MKTARGET_LINK}
|
|
${HOST_LINK.c} -o ${.TARGET} ${.ALLSRC} ${NBCOMPATLIB} ${HOSTLIBIBERTY}
|
|
# This is a copy of the ${PROG} target from bsd.prog.mk.
|
|
DUMMYOBJS= ${SRCS:N${PROG}-checksum.c:.c=.o} dummy-checksum.o
|
|
${PROG}-dummy: ${DUMMYOBJS}
|
|
${_MKTARGET_LINK}
|
|
.if defined(DESTDIR)
|
|
${_CCLINK} -Wl,-nostdlib \
|
|
${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${_PROGLDOPTS} \
|
|
-B${_GCC_CRTDIR}/ -B${DESTDIR}/usr/lib/ \
|
|
${DUMMYOBJS} ${LDADD} \
|
|
-L${_GCC_LIBGCCDIR} -L${DESTDIR}/usr/lib
|
|
.else
|
|
${_CCLINK} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${_PROGLDOPTS} ${DUMMYOBJS} ${LDADD}
|
|
.endif # defined(DESTDIR)
|
|
${PROG}-checksum.c: genchecksum ${PROG}-dummy
|
|
${_MKTARGET_CREATE}
|
|
./genchecksum ${PROG}-dummy >${.TARGET}
|
|
|
|
# Find our (local) libraries
|
|
LIBGMPDIR!= cd ${NETBSDSRCDIR}/external/lgpl3/gmp/lib/libgmp && ${PRINTOBJDIR}
|
|
LIBMPFRDIR!= cd ${NETBSDSRCDIR}/external/lgpl3/mpfr/lib/libmpfr && ${PRINTOBJDIR}
|
|
LIBMPCDIR!= cd ${NETBSDSRCDIR}/external/lgpl3/mpc/lib/libmpc && ${PRINTOBJDIR}
|
|
|
|
LIBGMP= ${LIBGMPDIR}/libgmp.a
|
|
LIBMPFR= ${LIBMPFRDIR}/libmpfr.a
|
|
LIBMPC= ${LIBMPCDIR}/libmpc.a
|