blob: ed756b8f697cc43309df6e8008b116eee3f2e81f (
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.1 2006/05/10 22:48:11 mrg Exp $
NOOBJ=# defined
.include <bsd.own.mk>
.if ${MKGCC} != "no" && exists(${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk)
SUBDIR+= host-libiberty libiberty .WAIT \
backend .WAIT \
frontend .WAIT \
libcpp gcov .WAIT \
cc1 cc1obj cc1plus cpp g++ gcc \
include protoize unprotoize
.include <bsd.subdir.mk>
.else
# Do nothing. (PROG undefined)
.include <bsd.prog.mk>
.endif
|