d511b20a69
`SUBDIR.${MK_TESTS}+= tests` idiom. This is a follow up to r321912.
18 lines
304 B
Makefile
18 lines
304 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 4/17/94
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= compress
|
|
SRCS= compress.c zopen.c
|
|
LINKS= ${BINDIR}/compress ${BINDIR}/uncompress
|
|
MLINKS= compress.1 uncompress.1
|
|
|
|
# XXX zopen is not part of libc
|
|
# MAN=zopen.3
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|