Makefile revision 1.10
1#	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
2#	$NetBSD: Makefile,v 1.10 2002/07/19 02:26:40 mrg Exp $
3
4.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" \
5	|| ${MACHINE} == "sparc64"
6PROG=	eeprom
7
8YPREFIX=getdate_
9
10SRCS=	getdate.y main.c
11
12.if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64"
13SRCS+=	ophandlers.c
14.endif
15.if ${MACHINE_ARCH} != "sparc64"
16SRCS+=	eehandlers.c
17.endif
18
19.endif
20
21MAN=	eeprom.8
22
23.include <bsd.prog.mk>
24