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