blob: 33522c3b8c0ce4fadc1dec1d31b808ebc0c62adc (
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
|
# $NetBSD: Makefile,v 1.13 2021/04/23 22:50:06 mrg Exp $
NOOBJ=# defined
.include <bsd.init.mk>
GCC_MACHINE_ARCH=${MACHINE_ARCH:S/earmv5/earm/}
.if ${MKGCC} != "no" && exists(${.CURDIR}/gcc/arch/${GCC_MACHINE_ARCH}/defs.mk)
.if ${MKGCCCMDS} != "no" || make(includes)
# We keep libcpp here since it depends upon frontend.
SUBDIR+= host-libiberty .WAIT \
host-libcpp .WAIT \
backend .WAIT \
frontend .WAIT \
common common-target .WAIT \
libcpp libdecnumber .WAIT \
gcov gcov-dump cc1 cc1obj cc1objplus cc1plus cpp g++ gcc \
lto1 lto-wrapper lto-dump \
include
.endif
.include <bsd.subdir.mk>
.else
# Do nothing. (PROG undefined)
.include <bsd.prog.mk>
.endif
|