summaryrefslogtreecommitdiff
path: root/sbin/savecore/Makefile
blob: e86f7659ce98045ee4ce6a537e1a7ac6dc66cd7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#	$OpenBSD: Makefile,v 1.12 1998/09/17 01:16:14 millert Exp $

PROG=	savecore

# XXX Temporarely until i386 and pmax are able to use libkvm
.if	(${MACHINE} == "i386" || ${MACHINE} == "pmax")
SRCS=	savecore_old.c
.else
SRCS=	savecore.c
LDADD=	-lkvm
DPADD=	${LIBKVM}
.endif
SRCS+=	zopen.c nlist.c
#CFLAGS+=-D_NLIST_DO_GZIP
#LDADD+=	-lz
#DPADD+=	${LIBZ}
MAN=	savecore.8
.PATH:	${.CURDIR}/../../usr.bin/compress
.PATH:	${.CURDIR}/../../lib/libc/gen

.include <bsd.prog.mk>