Home | History | Annotate | Line # | Download | only in gen
Makefile revision 1.11
      1  1.11  pgoyette # $NetBSD: Makefile,v 1.11 2011/01/01 23:45:01 pgoyette Exp $
      2   1.1  christos 
      3   1.1  christos .include <bsd.own.mk>
      4   1.1  christos 
      5   1.1  christos TESTSDIR=	${TESTSBASE}/lib/libc/gen
      6   1.1  christos 
      7   1.7  pgoyette TESTS_C+=	t_basedirname
      8   1.7  pgoyette TESTS_C+=	t_dir
      9   1.7  pgoyette TESTS_C+=	t_fmtcheck
     10   1.1  christos TESTS_C+=	t_glob_star
     11   1.7  pgoyette TESTS_C+=	t_humanize_number
     12  1.11  pgoyette TESTS_C+=	t_ldexp
     13   1.7  pgoyette TESTS_C+=	t_rbstress
     14   1.2     pooka TESTS_C+=	t_syslog_pthread
     15   1.7  pgoyette TESTS_C+=	t_vis
     16   1.2     pooka 
     17   1.5  pgoyette .if !make(obj) && !make(cleandir)
     18   1.5  pgoyette HAVE_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
     19   1.5  pgoyette .endif
     20   1.5  pgoyette 
     21   1.5  pgoyette .if make(obj) || make(cleandir) || (${HAVE_SIGINFO} == "yes")
     22   1.5  pgoyette TESTS_C+=	t_siginfo
     23   1.5  pgoyette .endif
     24   1.5  pgoyette 
     25  1.11  pgoyette LDADD.t_ldexp+=		-lm
     26   1.2     pooka LDADD.t_syslog_pthread+=-lpthread
     27   1.1  christos 
     28   1.1  christos .include <bsd.test.mk>
     29