mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-24 09:13:37 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
22 lines
490 B
Makefile
22 lines
490 B
Makefile
DIFFSRC=${SRCTOP}/contrib/diff/src
|
|
.PATH: ${DIFFSRC} \
|
|
${SRCTOP}/contrib/diff/lib \
|
|
${SRCTOP}/contrib/diff/man
|
|
|
|
PROG= diff3
|
|
SRCS= diff3.c version-etc.c \
|
|
xmalloc.c error.c c-stack.c exitfail.c cmpbuf.c
|
|
|
|
# Important for ctype macros!
|
|
CFLAGS+=-funsigned-char
|
|
|
|
CFLAGS+=-I${SRCTOP}/contrib/diff/
|
|
CFLAGS+=-I${SRCTOP}/contrib/diff/src
|
|
CFLAGS+=-I${SRCTOP}/contrib/diff/lib
|
|
CFLAGS+=-DHAVE_CONFIG_H
|
|
CFLAGS+=-DDEFAULT_DIFF_PROGRAM=\"/usr/bin/diff\"
|
|
|
|
WARNS?= 0
|
|
|
|
.include <bsd.prog.mk>
|