xref: /openbsd/usr.sbin/eeprom/Makefile (revision 264ca280)
1#	$OpenBSD: Makefile,v 1.15 2016/07/05 12:57:58 visa Exp $
2
3.if ${MACHINE} == "armv7" || ${MACHINE} == "macppc" || \
4    ${MACHINE} == "octeon" || ${MACHINE} == "sparc" || \
5    ${MACHINE} == "sparc64"
6PROG=	eeprom
7
8SRCS=	getdate.c main.c
9SRCS+=	ophandlers.c optree.c
10
11.  if ${MACHINE} == "sparc"
12SRCS+=	eehandlers.c
13.  endif
14
15CLEANFILES+=getdate.c y.tab.h
16.else
17NOPROG=yes
18.endif
19
20MAN=	eeprom.8
21MANSUBDIR=armv7 macppc octeon sparc sparc64
22
23.include <bsd.prog.mk>
24