xref: /openbsd-src/distrib/special/eeprom/Makefile (revision ae952c075c29d53dfcb259c96dad4c2e5bf65b6e)
1#	$OpenBSD: Makefile,v 1.3 2020/07/21 13:57:08 deraadt Exp $
2
3.PATH: ${.CURDIR}/../../../usr.sbin/eeprom
4
5.if ${MACHINE} == "arm64" || ${MACHINE} == "armv7" || \
6    ${MACHINE} == "macppc" || ${MACHINE} == "octeon" || \
7    ${MACHINE} == "powerpc64" || ${MACHINE} == "sparc64"
8PROG=	eeprom
9
10SRCS=	main.c
11SRCS+=	ophandlers.c optree.c
12
13CFLAGS+=	-DSMALL
14.else
15NOPROG=yes
16.endif
17
18.include <bsd.prog.mk>
19