blob: 48b164133bb0fd404a67b426acee5421a3e85aee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.include <src.opts.mk>
PACKAGE= runtime
PROG= find
SRCS= find.c function.c ls.c main.c misc.c operator.c option.c printf.c \
getdate.y
YFLAGS=
CFLAGS.clang+= -Werror=undef
NO_WMISSING_VARIABLE_DECLARATIONS=
HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests
.include <bsd.prog.mk>
|