freebsd-dev/sbin/savecore/Makefile
Kris Kennaway dff462c363 * Switch from doing compress(1)ed crashdumps with the -z flag to using
gzip(1).  gdb doesn't understand these, but then again it didn't
  understand compressed crashdumps either.
* Change a stray lseek() into a Lseek()
* Remove the extraneous prototype for log() which has apparently never
  existed in FreeBSD's sources

Obtained from:  NetBSD (partially)
MFC after:      2 weeks
2001-09-06 09:30:09 +00:00

12 lines
152 B
Makefile

# @(#)Makefile 8.2 (Berkeley) 4/17/94
# $FreeBSD$
PROG= savecore
SRCS= savecore.c
MAN= savecore.8
DPADD+= ${LIBZ}
LDADD+= -lz
.include <bsd.prog.mk>