NetBSD/lib/libkvm.old/Makefile
cgd c27f2fa69f delete redundant files; pull them in via .PATH to avoid inconsistencies.
Changes which would be made here are also quite likely to apply to
"new" libkvm code, as well.  No point in having to do them twice, or
letting them get lost.
1996-04-01 19:28:03 +00:00

28 lines
675 B
Makefile

# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
# $Id: Makefile,v 1.2 1996/04/01 19:28:03 cgd Exp $
.PATH: ${.CURDIR}/../libkvm
LIB= kvm
CFLAGS+=-DLIBC_SCCS
# Try most specific name first.
.if exists(kvm_${MACHINE}.c)
SRCS= kvm_${MACHINE}.c
.else
# Less specific name (i.e. m68k)
CFLAGS+=-D${MACHINE}
SRCS= kvm_${MACHINE_ARCH}.c
.endif
SRCS+= kvm.c kvm_file.c kvm_getloadavg.c kvm_proc.c
MAN= kvm.3 kvm_geterr.3 kvm_getfiles.3 kvm_getloadavg.3 kvm_getprocs.3 \
kvm_nlist.3 kvm_open.3 kvm_read.3
MLINKS+=kvm_getprocs.3 kvm_getargv.3 kvm_getprocs.3 kvm_getenvv.3
MLINKS+=kvm_open.3 kvm_openfiles.3 kvm_open.3 kvm_close.3
MLINKS+=kvm_read.3 kvm_write.3
.include <bsd.lib.mk>