blob: 75ee9bb53da1f2d3222ad3dac71ec5f7553a7d52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
# $NetBSD: Makefile,v 1.19 2013/05/02 03:56:42 matt Exp $
.include <bsd.own.mk>
.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" \
|| ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" \
|| ${MACHINE} == "macppc" || ${MACHINE} == "prep" \
|| ${MACHINE_CPU} == "arm"
PROG= eeprom
SRCS= main.c
LDADD+=-lutil
DPADD+=${LIBUTIL}
.if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64"
SRCS+= ophandlers.c
CPPFLAGS+= -DUSE_OPENPROM
.endif
.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc"
SRCS+= eehandlers.c
CPPFLAGS+= -DUSE_EEPROM
.endif
.if ${MACHINE} == "macppc" || ${MACHINE_CPU} == "arm"
SRCS+= ofhandlers.c
CPPFLAGS+= -DUSE_OPENFIRM
.endif
.if ${MACHINE} == "prep"
SRCS+= prephandlers.c
CPPFLAGS+= -DUSE_PREPNVRAM
.endif
.endif
MAN= eeprom.8
CPPFLAGS+= -I${.CURDIR}
.include <bsd.prog.mk>
|