freebsd-dev/usr.bin/truncate/Makefile
Jilles Tjoelker fc96358cdd truncate: Detect integer overflow, fix relative sizes, add tests.
The change to expand_number (r204654) broke detection of too large sizes and
relative sizes ('+'/'-').

Also add some tests.

PR:		190735
Submitted by:	Kirk Russell
MFC after:	1 week
2014-06-09 10:39:55 +00:00

14 lines
158 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
PROG= truncate
DPADD= ${LIBUTIL}
LDADD= -lutil
.if ${MK_TESTS} != "no"
SUBDIR+= tests
.endif
.include <bsd.prog.mk>