1 # $NetBSD: Makefile,v 1.14.2.4 2011/02/02 19:17:08 bouyer Exp $ 2 # 3 4 .include <bsd.own.mk> 5 6 SUBDIR= clients 7 8 TESTSDIR= ${TESTSBASE}/fs/ffs 9 WARNS= 4 10 11 PROGS= h_quota2_server h_quota2_tests 12 SRCS.h_quota2_server= h_quota2_server.c 13 MAN.h_quota2_server= # empty 14 BINDIR.h_quota2_server= ${TESTSDIR} 15 16 SRCS.h_quota2_tests= h_quota2_tests.c 17 MAN.h_quota2_tests= # empty 18 BINDIR.h_quota2_tests= ${TESTSDIR} 19 20 .for name in t_getquota t_setquota t_quotalimit 21 TESTS_SH+= ${name} 22 TESTS_SH_SRC_${name}= quotas_common.sh ${name}.sh 23 .endfor 24 25 TESTS_C+= t_fifos 26 TESTS_C+= t_snapshot 27 TESTS_C+= t_snapshot_log 28 TESTS_C+= t_snapshot_v2 29 TESTS_C+= t_mount 30 TESTS_C+= t_quota2_1 31 32 LDADD+=-lrumpfs_ffs # ffs 33 LDADD+=-lrumpdev_fss # snapshot dev 34 LDADD+=-lrumpdev_disk -lrumpdev # disk device 35 LDADD+=-lrumpvfs_fifofs -lrumpnet_local -lrumpnet_net -lrumpnet # fifos 36 VFSTESTDIR != cd ${.CURDIR}/../common && ${PRINTOBJDIR} 37 LDADD+=-L${VFSTESTDIR} -lvfstest 38 LDADD+=-lrumpvfs -lrump -lrumpuser -lpthread # base 39 40 .include <bsd.test.mk> 41