1 # $NetBSD: Makefile,v 1.14.2.7 2011/02/11 16:54:03 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 t_clearquota t_miscquota 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 TESTS_C+= t_quota2_remount 32 33 LDADD+=-lrumpfs_ffs # ffs 34 LDADD+=-lrumpdev_fss # snapshot dev 35 LDADD+=-lrumpdev_disk -lrumpdev # disk device 36 LDADD+=-lrumpvfs_fifofs -lrumpnet_local -lrumpnet_net -lrumpnet # fifos 37 VFSTESTDIR != cd ${.CURDIR}/../common && ${PRINTOBJDIR} 38 LDADD+=-L${VFSTESTDIR} -lvfstest 39 LDADD+=-lrumpvfs -lrump -lrumpuser -lpthread # base 40 41 .include <bsd.test.mk> 42