From 17917d67f832fcf69a7065b303ca1c21852656c6 Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Sun, 29 May 1994 12:44:36 +0000 Subject: Corrected to work without symbolic links for md-${MACHINE}.c. --- usr.bin/gcore/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'usr.bin/gcore') diff --git a/usr.bin/gcore/Makefile b/usr.bin/gcore/Makefile index c7bf6e04215c..175f1fc9c74a 100644 --- a/usr.bin/gcore/Makefile +++ b/usr.bin/gcore/Makefile @@ -1,7 +1,13 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= gcore -SRCS= gcore.c md-${MACHINE}.c +SRCS= gcore.c LDADD= -lkvm +.if ${MACHINE} != "sparc" +SRCS+= md-nop.c +.else +SRCS+= md-${MACHINDE}.c +.endif + .include -- cgit v1.2.3