1 # $NetBSD: Makefile,v 1.1 2010/06/11 23:52:38 pooka Exp $ 2 # 3 4 TESTSDIR= ${TESTSBASE}/fs/ptyfs 5 WARNS= 4 6 DBG=-g 7 NOGCCERROR=1 8 9 TESTS_C= t_ptyfs 10 TESTS_C+= t_nullpts 11 12 LDADD+= -lrumpfs_ptyfs # fs drivers 13 LDADD+= -lrumpkern_tty # tty support 14 LDADD+= -lrumpvfs -lrump -lrumpuser -lpthread # base 15 16 LDADD.t_nullpts+= -lrumpfs_null -lrumpvfs_layerfs 17 18 .include <bsd.test.mk> 19