Makefile revision 1.5
11.5Spgoyette# $NetBSD: Makefile,v 1.5 2010/12/25 01:22:02 pgoyette Exp $ 21.1Schristos 31.1Schristos.include <bsd.own.mk> 41.1Schristos 51.1SchristosTESTSDIR= ${TESTSBASE}/lib/libc/gen 61.1Schristos 71.1SchristosTESTS_C+= t_glob_star 81.2SpookaTESTS_C+= t_syslog_pthread 91.3SpgoyetteTESTS_C+= t_basedirname 101.4SpgoyetteTESTS_C+= t_siginfo 111.2Spooka 121.5Spgoyette.if !make(obj) && !make(cleandir) 131.5SpgoyetteHAVE_SIGINFO != if (echo "\#include <signal.h>" && echo "SA_SIGINFO") | ${CC} -E -I${DESTDIR}/usr/include - | grep -sq 0x0040; then echo yes; else echo no; fi 141.5Spgoyette.endif 151.5Spgoyette 161.5Spgoyette.if make(obj) || make(cleandir) || (${HAVE_SIGINFO} == "yes") 171.5SpgoyetteTESTS_C+= t_siginfo 181.5Spgoyette.endif 191.5Spgoyette 201.2SpookaLDADD.t_syslog_pthread+=-lpthread 211.1Schristos 221.1Schristos.include <bsd.test.mk> 23