Makefile revision 1.6
1#	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
2#	$NetBSD: Makefile,v 1.6 1998/04/09 00:32:40 tv Exp $
3
4.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc"
5PROG=	eeprom
6
7YFLAGS+=-pgetdate_
8
9BINGRP=	kmem
10BINMODE=2555
11
12SRCS=	eehandlers.c getdate.y main.c
13
14.if ${MACHINE} == "sparc"
15SRCS+=	ophandlers.c
16DPADD=	${LIBKVM}
17LDADD=	-lkvm
18.endif
19.endif
20
21MAN=	eeprom.8
22
23.include <bsd.prog.mk>
24