1# $NetBSD: Makefile,v 1.10 2014/01/09 02:18:10 christos Exp $ 2 3.include <bsd.own.mk> 4 5MKMAN= no 6 7#LSC: Unsupported on MINIX 8#TESTS_SUBDIRS+= getaddrinfo 9FILES+=hosts resolv.conf 10 11TESTSDIR= ${TESTSBASE}/lib/libc/net 12 13TESTS_C+= t_getprotoent 14#LSC: Unsupported on MINIX 15#TESTS_C+= t_ether_aton 16 17#SRCS.t_ether_aton= aton_ether_subr.c t_ether_aton.c 18 19aton_ether_subr.c: gen_ether_subr ${NETBSDSRCDIR}/sys/net/if_ethersubr.c 20 ${HOST_SH} ${.ALLSRC} ${.TARGET} 21 22TESTS_SH+= t_nsdispatch 23TESTS_SH+= t_protoent 24TESTS_SH+= t_servent 25TESTS_SH+= t_hostent 26 27BINDIR= ${TESTSDIR} 28 29#LSC: Unsupported on MINIX 30#PROGS+= h_nsd_recurse 31PROGS+= h_protoent 32PROGS+= h_servent 33PROGS+= h_hostent 34PROGS+= h_dns_server 35CPPFLAGS.h_hostent.c += -I${NETBSDSRCDIR}/lib/libc/net 36 37# For easy debugging, without installing libc 38#.PATH.c:${NETBSDSRCDIR}/lib/libc/net 39#SRCS.h_hostent = h_hostent.c gethnamaddr.c 40#DBG=-g3 41 42LDADD.h_nsd_recurse+= -lpthread 43 44CLEANFILES+= aton_ether_subr.c 45 46.include <bsd.test.mk> 47