blob: 2050f41ead48d869d732e18d544a6d6283824430 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: Makefile,v 1.3 2014/03/01 10:00:33 mrg Exp $
.include <bsd.own.mk>
SUBDIR+= libgcc
.if defined(__MINIX) && ${MKGCCCMDS} == "yes"
.if ${MKPIC} != "no" || ${MACHINE_ARCH} == "earm"
SUBDIR+= libgcc_eh
.endif
SUBDIR+= libgcc_s
.else
.if ${MKPIC} != "no"
SUBDIR+= libgcc_eh libgcc_s
.endif
SUBDIR+= libgcov
.endif # defined(__MINIX) && ${MKGCCCMDS} == "yes"
.include <bsd.subdir.mk>
|