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
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.5 2013/08/22 00:17:48 matt Exp $
|
|
|
|
# For ../Makefile.inc and bsd.own.mk
|
|
.include <bsd.init.mk>
|
|
|
|
PROG= cpp
|
|
SRCS= gcc.c cppspec.c prefix.c version.c
|
|
|
|
# XXX
|
|
.if ${GCC_MACHINE_ARCH} == "x86_64" || ${GCC_MACHINE_ARCH} == "i386"
|
|
SRCS+= driver-i386.c
|
|
.PATH: ${DIST}/gcc/config/i386
|
|
.endif
|
|
.if ${GCC_MACHINE_ARCH} == "powerpc" || ${GCC_MACHINE_ARCH} == "powerpc64"
|
|
SRCS+= driver-rs6000.c
|
|
.PATH: ${DIST}/gcc/config/rs6000
|
|
.endif
|
|
|
|
CPPFLAGS+= -I${BACKENDOBJ}
|
|
CPPFLAGS.prefix.c+= -DPREFIX=\"/usr\"
|
|
|
|
CPPFLAGS.gcc.c+= -I${GCCARCH} -I${BACKENDOBJ} -I. \
|
|
${G_ALL_CFLAGS:M-D*} ${G_INCLUDES:M-I*:N-I.*} \
|
|
-DPREFIX=\"/usr\" \
|
|
-DDEFAULT_TARGET_VERSION=\"${G_version}\" \
|
|
-DDEFAULT_TARGET_MACHINE=\"${MACHINE_GNU_PLATFORM}\" \
|
|
-DCONFIGURE_SPECS="\"\""
|
|
|
|
LINKS= ${BINDIR}/cpp ${BINDIR}/gcpp
|
|
|
|
TEXINFO= cpp.texi
|
|
INFOFLAGS= -I${DIST}/gcc/doc -I${DIST}/gcc/doc/include -I.
|
|
|
|
MAN= cpp.1
|
|
MLINKS+= cpp.1 gcpp.1 cpp.1 cccp.1
|
|
|
|
.include "../Makefile.frontend"
|
|
|
|
.if !defined(__MINIX)
|
|
LDADD+= -lintl
|
|
.endif # !defined(__MINIX)
|
|
|
|
COPTS+= -Wno-stack-protector
|
|
|
|
.include <bsd.info.mk>
|
|
|
|
.PATH: ${DIST}/gcc ${DIST}/gcc/doc
|
|
|
|
cpp.info: gcc-vers.texi
|