diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1997-10-29 16:58:20 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1997-10-29 16:58:20 +0000 |
| commit | 53d4d0e441d54bf4d5dca7744debc3a8bd3da3b2 (patch) | |
| tree | 28a6744db927658a7a5ed6275ff0bd33be0bd596 | |
| parent | e4b6c3604eed17ec5e50ee4f8758d7c157656e8d (diff) | |
Notes
| -rw-r--r-- | gnu/usr.bin/sdiff/Makefile | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/gnu/usr.bin/sdiff/Makefile b/gnu/usr.bin/sdiff/Makefile index 449a93396f1f..9443fe5019a9 100644 --- a/gnu/usr.bin/sdiff/Makefile +++ b/gnu/usr.bin/sdiff/Makefile @@ -1,9 +1,16 @@ +# $Id: Makefile,v 1.7 1997/02/22 15:45:24 peter Exp $ + +.PATH: ${.CURDIR}/../../../contrib/diff + PROG= sdiff SRCS= sdiff.c getopt.c getopt1.c version.c -CFLAGS+= -I$(.CURDIR)/../diff -DHAVE_CONFIG_H \ - -DDIFF_PROGRAM=\"/usr/bin/diff\" -.PATH: $(.CURDIR)/../diff -MAN= sdiff.1 + +# Important for ctype macros! +CFLAGS+=-funsigned-char + +CFLAGS+=-I${.CURDIR}/../../../contrib/diff +CFLAGS+=-DHAVE_CONFIG_H +CFLAGS+=-DDIFF_PROGRAM=\"/usr/bin/diff\" +CFLAGS+=-DDEFAULT_EDITOR_PROGRAM=\"/usr/bin/vi\" .include <bsd.prog.mk> -.PATH: $(.CURDIR)/../diff |
