blob: 5e596789ac7ca79936ad636c09001f837820a995 (
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.8 2023/02/20 02:12:27 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>
|