Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.bin / gcore / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD: src/usr.bin/gcore/Makefile,v 1.6 1999/11/14 13:54:43 marcel Exp $
3 # $DragonFly: src/usr.bin/gcore/Makefile,v 1.2 2003/06/17 04:29:26 dillon Exp $
4
5 PROG=   gcore
6 SRCS=   elfcore.c gcore.c
7 CFLAGS+=-Wall
8 DPADD=  ${LIBKVM}
9 LDADD=  -lkvm
10
11 .if     ${MACHINE_ARCH} != "sparc"
12 SRCS+=  md-nop.c
13 .else
14 SRCS+=  md-${MACHINE_ARCH}.c
15 .endif
16
17 .include <bsd.prog.mk>