14 lines
255 B
Makefile
14 lines
255 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 4/17/94
|
|
# $FreeBSD$
|
|
|
|
PROG= compress
|
|
CFLAGS+=-Wall
|
|
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
|
|
|
|
.include <bsd.prog.mk>
|