blob: 219e42884095ca0f18e9ae288ee9f5768810279b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $NetBSD: Makefile,v 1.2 2019/08/15 08:24:11 kamil Exp $
NOMAN= # defined
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/bin/df
TESTS_SH= t_df
BINDIR= ${TESTSDIR}
PROG= h_df
.PATH: ${NETBSDSRCDIR}/bin/df
SRCS= df.c getmntinfo.c
LDADD+= -lutil
DPADD+= ${LIBUTIL}
# Pass -DINTREE to make to test using humanize_number.c in source tree
# directly instead of the one in libc.
.if defined(INTREE)
.PATH: ${NETBSDSRCDIR}/lib/libc/gen
CPPFLAGS+= -I${NETBSDSRCDIR}/lib/libc/include
SRCS+= humanize_number.c
.endif
SANITIZER_RENAME_SYMBOL+= __getmntinfo13
.include <bsd.test.mk>
|