1 # $NetBSD: Makefile,v 1.63 2010/12/26 13:38:08 pgoyette Exp $ 2 3 SUBDIR+= _setjmp atexit citrus clone context convfp db \ 4 divrem gen gdtoa getaddrinfo hsearch inet int_fmtio locale md5sha \ 5 nsdispatch pty randomid regex rpc servent setjmp sigsetjmp \ 6 stdlib strptime sys time 7 8 .include <bsd.own.mk> 9 .include <bsd.sys.mk> 10 11 .if defined(USE_SSP) && (${USE_SSP} == "yes") 12 SUBDIR+= ssp 13 .endif 14 .if (${MACHINE_ARCH} != "vax" && ${MACHINE_ARCH} != "m68000") 15 SUBDIR+= ieeefp 16 .endif 17 .if (${MACHINE_ARCH} != "vax") 18 SUBDIR+= ldexp 19 .endif 20 21 .if exists(arch/${MACHINE_ARCH}) 22 SUBDIR+= arch/${MACHINE_ARCH} 23 .endif 24 25 .include <bsd.subdir.mk> 26