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