xref: /minix3/tests/fs/tmpfs/Makefile (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc# $NetBSD: Makefile,v 1.6 2010/06/07 03:43:51 riz Exp $
2*11be35a1SLionel Sambuc
3*11be35a1SLionel SambucTESTSDIR=	${TESTSBASE}/fs/tmpfs
4*11be35a1SLionel SambucWARNS=		4
5*11be35a1SLionel Sambuc
6*11be35a1SLionel SambucTESTS_SH=	t_create
7*11be35a1SLionel SambucTESTS_SH+=	t_devices
8*11be35a1SLionel SambucTESTS_SH+=	t_dots
9*11be35a1SLionel SambucTESTS_SH+=	t_exec
10*11be35a1SLionel SambucTESTS_SH+=	t_link
11*11be35a1SLionel SambucTESTS_SH+=	t_mkdir
12*11be35a1SLionel SambucTESTS_SH+=	t_mknod
13*11be35a1SLionel SambucTESTS_SH+=	t_mount
14*11be35a1SLionel SambucTESTS_SH+=	t_pipes
15*11be35a1SLionel SambucTESTS_SH+=	t_read_write
16*11be35a1SLionel SambucTESTS_SH+=	t_readdir
17*11be35a1SLionel SambucTESTS_SH+=	t_remove
18*11be35a1SLionel SambucTESTS_SH+=	t_rename
19*11be35a1SLionel SambucTESTS_SH+=	t_rmdir
20*11be35a1SLionel SambucTESTS_SH+=	t_setattr
21*11be35a1SLionel SambucTESTS_SH+=	t_sizes
22*11be35a1SLionel SambucTESTS_SH+=	t_sockets
23*11be35a1SLionel SambucTESTS_SH+=	t_statvfs
24*11be35a1SLionel SambucTESTS_SH+=	t_symlink
25*11be35a1SLionel SambucTESTS_SH+=	t_times
26*11be35a1SLionel SambucTESTS_SH+=	t_trail_slash
27*11be35a1SLionel SambucTESTS_SH+=	t_truncate
28*11be35a1SLionel SambucTESTS_SH+=	t_vnd
29*11be35a1SLionel SambucTESTS_SH+=	t_vnode_leak
30*11be35a1SLionel Sambuc
31*11be35a1SLionel SambucTESTS_C+=	t_renamerace
32*11be35a1SLionel Sambuc
33*11be35a1SLionel SambucLDADD.t_renamerace+= -lrumpfs_tmpfs -lrumpvfs -lrump -lrumpuser -lpthread
34*11be35a1SLionel Sambuc
35*11be35a1SLionel SambucFILES=		h_funcs.subr
36*11be35a1SLionel SambucFILESDIR=	${TESTSDIR}
37*11be35a1SLionel Sambuc
38*11be35a1SLionel SambucPROGS=		h_tools
39*11be35a1SLionel SambucSRCS.h_tools=	h_tools.c
40*11be35a1SLionel SambucMAN.h_tools=	# empty
41*11be35a1SLionel SambucBINDIR.h_tools=	${TESTSDIR}
42*11be35a1SLionel Sambuc
43*11be35a1SLionel Sambuc.include <bsd.test.mk>
44