3bbe3f672e
Some of the modifications from the previous summer of code has been integrated Modification for compatibility with GNU diff output has been added Main difference with OpenBSD: Implement multiple GNU diff options: * --ignore-file-name-case * --no-ignore-file-name-case * --normal * --tabsize * --strip-trailing-cr Make diff -p compatible with GNU diff Implement diff -l Make diff -r compatible with GNU diff Capsicumize diffing 2 regular files Add a simple test suite Approved by: AsiaBSDcon devsummit Obtained from: OpenBSD, GSoC Relnotes: yes
28 lines
452 B
Makefile
28 lines
452 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR_DEPEND_gdb= ${_binutils}
|
|
|
|
.if ${MK_CXX} != "no"
|
|
SUBDIR.${MK_GCC}+= gperf
|
|
SUBDIR.${MK_GROFF}+= groff
|
|
.endif
|
|
|
|
SUBDIR.${MK_BINUTILS}+= binutils
|
|
SUBDIR.${MK_DIALOG}+= dialog
|
|
|
|
.if ${MK_BINUTILS} != "no"
|
|
SUBDIR.${MK_GDB}+= gdb
|
|
.endif
|
|
|
|
SUBDIR.${MK_GCC}+= cc
|
|
SUBDIR.${MK_GNU_DIFF}+= diff3
|
|
SUBDIR.${MK_GNU_GREP}+= grep
|
|
SUBDIR.${MK_GPL_DTC}+= dtc
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
.include <bsd.subdir.mk>
|