
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2014/05/31 22:55:17 mrg Exp $
|
|
|
|
# For ../Makefile.inc and bsd.own.mk
|
|
.include <bsd.init.mk>
|
|
|
|
.if defined(__MINIX)
|
|
# In case of installation of both clang and GCC, we want to be able to
|
|
# switch which one is the default by adapting the cc, c++ & cpp symlinks
|
|
PROG= gcpp
|
|
.else
|
|
PROG= cpp
|
|
.endif # defined(__MINIX)
|
|
SRCS= cppspec.c ${G_GCC_OBJS:.o=.c}
|
|
|
|
CPPFLAGS+= -I${BACKENDOBJ}
|
|
# XXX
|
|
CPPFLAGS+= -DCONFIGURE_SPECS="\"\"" \
|
|
-DDEFAULT_TARGET_VERSION=\"${G_version}\" \
|
|
-DDEFAULT_TARGET_MACHINE=\"${MACHINE_GNU_PLATFORM}\"
|
|
|
|
COPTS+= -Wno-stack-protector
|
|
|
|
.if defined(__MINIX)
|
|
.if ${HAVE_LLVM:Uno} == "no"
|
|
SYMLINKS= ${BINDIR}/gcpp ${BINDIR}/cpp
|
|
.endif # ${HAVE_LLVM:Uno} == "no"
|
|
.else
|
|
LINKS= ${BINDIR}/cpp ${BINDIR}/gcpp
|
|
.endif # defined(__MINIX)
|
|
|
|
MAN= cpp.1
|
|
MLINKS+= cpp.1 gcpp.1 cpp.1 cccp.1
|
|
|
|
TEXINFO= cpp.texi
|
|
INFOFLAGS= -I${DIST}/gcc/doc -I${DIST}/gcc/doc/include -I.
|
|
|
|
.if !defined(__MINIX)
|
|
LDADD+= -lintl
|
|
DPADD+= ${LIBINTL}
|
|
.endif # !defined(__MINIX)
|
|
|
|
.include "../Makefile.frontend"
|
|
|
|
${SRCS}: ${GCCARCH}/defs.mk
|
|
|
|
.include <bsd.info.mk>
|
|
|
|
COPTS.gcc.c= -Wno-stack-protector
|
|
|
|
.PATH: ${DIST}/gcc ${DIST}/gcc/c-family ${DIST}/gcc/doc
|
|
|
|
cpp.info: gcc-vers.texi
|