53 lines
1.0 KiB
Makefile
53 lines
1.0 KiB
Makefile
# $NetBSD: Makefile,v 1.32 2013/02/28 15:31:22 martin Exp $
|
|
|
|
NOMAN= # defined
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/kernel
|
|
|
|
TESTS_SUBDIRS= kqueue
|
|
TESTS_C= t_lock
|
|
TESTS_C+= t_lockf
|
|
TESTS_C+= t_pty
|
|
TESTS_C+= t_mqueue
|
|
TESTS_C+= t_sysv
|
|
TESTS_C+= t_subr_prf
|
|
TESTS_C+= t_kauth_pr_47598
|
|
|
|
TESTS_SH= t_umount
|
|
TESTS_SH+= t_ps_strings
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
PROGS= h_ps_strings1
|
|
PROGS+= h_ps_strings2
|
|
|
|
LDADD.t_mqueue+= -lrt
|
|
|
|
|
|
.if (${MKRUMP} != "no")
|
|
TESTS_SUBDIRS+= tty
|
|
|
|
TESTS_C+= t_extattrctl
|
|
TESTS_C+= t_filedesc
|
|
TESTS_C+= t_rnd
|
|
LDADD.t_extattrctl+= -lrumpvfs -lrump -lrumpuser -lpthread
|
|
LDADD.t_filedesc+= ${LDADD.t_rnd}
|
|
LDADD.t_rnd+= -lrumpvfs -lrumpdev_rnd -lrumpdev -lrump -lrumpuser -lpthread
|
|
|
|
.endif
|
|
|
|
|
|
.PATH: ${NETBSDSRCDIR}/sys/kern
|
|
TESTS_C+= t_extent
|
|
SRCS.t_extent= t_extent.c subr_extent.c
|
|
CPPFLAGS.t_extent.c= -D_EXTENT_TESTING -D__POOL_EXPOSE
|
|
CPPFLAGS.subr_extent.c= -D_EXTENT_TESTING -D__POOL_EXPOSE
|
|
|
|
t_subr_prf.c: gen_t_subr_prf ${NETBSDSRCDIR}/sys/kern/subr_prf.c
|
|
${HOST_SH} ${.ALLSRC} ${.TARGET}
|
|
|
|
CLEANFILES+= t_subr_prf.c
|
|
|
|
.include <bsd.test.mk>
|