15 lines
198 B
Makefile
15 lines
198 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
PROG= gcore
|
|
SRCS= gcore.c
|
|
DPADD= ${LIBKVM}
|
|
LDADD= -lkvm
|
|
|
|
.if ${MACHINE} != "sparc"
|
|
SRCS+= md-nop.c
|
|
.else
|
|
SRCS+= md-${MACHINDE}.c
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|