blob: 01accd750f8ab06db1bf373e43dc6ac9c5df2bb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.13 2015/03/11 18:12:27 deraadt Exp $
.if ${MACHINE} == "macppc" || ${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=macppc sparc sparc64
.include <bsd.prog.mk>
|