mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
libopenbsd retains recallocarray() during bootstrapping for now as it is needed for mandoc. Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D52864
20 lines
479 B
Makefile
20 lines
479 B
Makefile
.include <src.opts.mk>
|
|
|
|
LIB= diff
|
|
INTERNALLIB= # API not published or supported.
|
|
|
|
.PATH: ${SRCTOP}/contrib/libdiff/compat
|
|
.PATH: ${SRCTOP}/contrib/libdiff/lib
|
|
|
|
SRCS= diff_atomize_text.c diff_main.c diff_myers.c \
|
|
diff_patience.c diff_output.c diff_output_plain.c \
|
|
diff_output_unidiff.c diff_output_edscript.c
|
|
|
|
WARNS=
|
|
CFLAGS+= -I${SRCTOP}/contrib/libdiff/compat/include
|
|
CFLAGS+= -I${SRCTOP}/contrib/libdiff/include
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.lib.mk>
|