diff options
author | ache <ache@FreeBSD.org> | 1997-10-29 16:50:42 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-10-29 16:50:42 +0000 |
commit | cdf50dc961445d349ca9827e5edd3f83bd5e16f5 (patch) | |
tree | 81a5d93d5bee8bee044318d9f53e248384f7607e /gnu | |
parent | b1e567feab0e2678ab133c9d491537a93a84f2d0 (diff) | |
download | FreeBSD-src-cdf50dc961445d349ca9827e5edd3f83bd5e16f5.zip FreeBSD-src-cdf50dc961445d349ca9827e5edd3f83bd5e16f5.tar.gz |
Switch to contrib version
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/diff3/Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gnu/usr.bin/diff3/Makefile b/gnu/usr.bin/diff3/Makefile index 3d2b422..b98c287 100644 --- a/gnu/usr.bin/diff3/Makefile +++ b/gnu/usr.bin/diff3/Makefile @@ -1,8 +1,15 @@ +# $Id: Makefile,v 1.7 1997/02/22 15:45:24 peter Exp $ + +.PATH: ${.CURDIR}/../../../contrib/diff + PROG= diff3 SRCS= diff3.c getopt.c getopt1.c version.c -CFLAGS+= -I$(.CURDIR)/../diff -DHAVE_CONFIG_H \ - -DDIFF_PROGRAM=\"/usr/bin/diff\" -MAN= diff3.1 + +# Important for ctype macros! +CFLAGS+=-funsigned-char + +CFLAGS+=-I${.CURDIR}/../../../contrib/diff +CFLAGS+=-DHAVE_CONFIG_H +CFLAGS+=-DDIFF_PROGRAM=\"/usr/bin/diff\" .include <bsd.prog.mk> -.PATH: $(.CURDIR)/../diff |