blob: 3ecbdb87e3747bd04a17e2af2feee0b7986a0f64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.3 2020/09/09 07:23:46 mrg Exp $
.include <bsd.init.mk>
.include "${.CURDIR}/../../arch/${GCC_MACHINE_ARCH}/defs.mk"
.cc: # disable .cc->NULL transform
DIST= ${GCCDIST}
GNUHOSTDIST= ${DIST}
INCS= ${G_profile_headers}
INCSDIR= /usr/include/g++/profile
.PATH: ${DIST}/libstdc++-v3/include/profile
.include "${.CURDIR}/../Makefile.includes"
SUBDIR= impl
.include <bsd.subdir.mk>
|