blob: 0fef085ca8aa53eab2f1f6606e4970611944566d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: Makefile,v 1.2 2016/09/01 10:08:29 deraadt Exp $
.PATH: ${.CURDIR}/../../../usr.sbin/eeprom
.if ${MACHINE} == "macppc" || ${MACHINE} == "sparc64"
PROG= eeprom
SRCS= main.c
SRCS+= ophandlers.c optree.c
CFLAGS+= -DSMALL
.else
NOPROG=yes
.endif
.include <bsd.prog.mk>
|