xref: /openbsd/distrib/special/eeprom/Makefile (revision cecf84d4)
1#	$OpenBSD: Makefile,v 1.1 2014/07/24 19:21:06 miod Exp $
2
3.PATH: ${.CURDIR}/../../../usr.sbin/eeprom
4
5.if ${MACHINE} == "macppc" || ${MACHINE} == "sparc" || ${MACHINE} == "sparc64"
6PROG=	eeprom
7
8SRCS=	main.c
9SRCS+=	ophandlers.c optree.c
10
11.  if ${MACHINE} == "sparc"
12SRCS+=	eehandlers.c
13.  endif
14
15CFLAGS+=	-DSMALL
16.else
17NOPROG=yes
18.endif
19
20.include <bsd.prog.mk>
21