blob: bc22eab49acaa3a1109941c8ea5310ab02141dff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $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>
|