Makefile revision 1.37
1# $NetBSD: Makefile,v 1.37 2003/10/04 20:29:52 christos Exp $ 2 3SUBDIR+= _setjmp atexit basename clone convfp db dirname div divrem \ 4 gen getaddrinfo hsearch int_fmtio locale md5sha popen regex rpc \ 5 setjmp sigsetjmp stdio stdlib string sys time 6.if (${MACHINE_ARCH} != "vax" && ${MACHINE_ARCH} != "m68000") 7SUBDIR+= ieeefp 8.endif 9.if (${MACHINE_ARCH} != "vax") 10SUBDIR+= ldexp 11.endif 12 13HAVE_SIGINFO != if (echo "\#include <signal.h>" && echo "SA_SIGINFO") | ${CC} -E - | grep -sq 0x0040; then echo yes; else echo no; fi 14 15.if (${HAVE_SIGINFO} == "yes") 16SUBDIR+= siginfo 17.endif 18 19.if exists(arch/${MACHINE_ARCH}) 20SUBDIR+= arch/${MACHINE_ARCH} 21.endif 22 23.include <bsd.subdir.mk> 24