
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
34 lines
824 B
Makefile
34 lines
824 B
Makefile
# $NetBSD: Makefile,v 1.9 2014/06/01 19:51:01 mrg Exp $
|
|
|
|
SUBDIR= backward ext bits debug decimal parallel pb profile
|
|
SUBDIR+= tr1 tr2
|
|
|
|
.include <bsd.init.mk>
|
|
.include <bsd.own.mk>
|
|
|
|
.include "${.CURDIR}/../arch/${GCC_MACHINE_ARCH}/defs.mk"
|
|
|
|
.cc: # disable .cc->NULL transform
|
|
|
|
DIST= ${GCCDIST}
|
|
GNUHOSTDIST= ${DIST}
|
|
|
|
# libsupc++
|
|
INCS= exception new typeinfo cxxabi.h initializer_list
|
|
|
|
# others
|
|
INCS+= cerrno
|
|
INCS+= ${G_std_headers} ${G_c_base_headers}
|
|
INCS+= ${G_c_compatibility_headers_extra}
|
|
INCSDIR= /usr/include/g++
|
|
|
|
.PATH: ${DIST}/libstdc++-v3
|
|
.PATH: ${DIST}/libstdc++-v3/libsupc++
|
|
#.PATH: ${DIST}/libstdc++-v3/include/c_compatibility
|
|
.PATH: ${DIST}/libstdc++-v3/include/c_global
|
|
.PATH: ${DIST}/libstdc++-v3/include/std
|
|
|
|
# Get default targets including <bsd.inc.mk>.
|
|
.include <bsd.prog.mk>
|
|
.include <bsd.subdir.mk>
|