16 lines
175 B
Makefile
16 lines
175 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
.include <src.opts.mk>
|
||
|
|
||
|
PROG= sdiff
|
||
|
SRCS= common.c edit.c sdiff.c
|
||
|
WARNS= 3
|
||
|
|
||
|
MAN1= sdiff.1
|
||
|
|
||
|
.if ${MK_TESTS} != "no"
|
||
|
SUBDIR+= tests
|
||
|
.endif
|
||
|
|
||
|
.include <bsd.progs.mk>
|