mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
2577a8acef
automagically. -lfoo has to be right to work, but ${LIBFO0} is too easy to forget or misspell; nothing checks it and it should be different for shared libraries.
14 lines
199 B
Makefile
14 lines
199 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>
|