xref: /netbsd-src/usr.sbin/eeprom/Makefile (revision 001c68bd94f75ce9270b69227c4199fbf34ee396)
1#	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
2#	$NetBSD: Makefile,v 1.11 2003/05/08 20:24:10 petrov 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
23CPPFLAGS+= -I${.CURDIR}
24
25.include <bsd.prog.mk>
26