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