Makefile revision 1.8
1#	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
2#	$NetBSD: Makefile,v 1.8 1999/01/17 20:02:29 eeh Exp $
3
4.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" \
5	|| ${MACHINE} == "sparc64"
6PROG=	eeprom
7
8YPREFIX=getdate_
9
10BINGRP=	kmem
11BINMODE=2555
12
13SRCS=	eehandlers.c getdate.y main.c
14
15.if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64"
16SRCS+=	ophandlers.c
17DPADD=	${LIBKVM}
18LDADD=	-lkvm
19.endif
20.endif
21
22MAN=	eeprom.8
23
24.include <bsd.prog.mk>
25