33 lines
633 B
Makefile
33 lines
633 B
Makefile
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
|
|
# $NetBSD: Makefile,v 1.12 2006/08/16 03:24:57 macallan Exp $
|
|
|
|
.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" \
|
|
|| ${MACHINE} == "sparc64" || ${MACHINE} == "macppc"
|
|
PROG= eeprom
|
|
|
|
YPREFIX=getdate_
|
|
|
|
SRCS= getdate.y main.c
|
|
|
|
.if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64"
|
|
SRCS+= ophandlers.c
|
|
.endif
|
|
|
|
.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc"
|
|
SRCS+= eehandlers.c
|
|
.endif
|
|
|
|
.if ${MACHINE} == "macppc"
|
|
SRCS+= ofhandlers.c
|
|
CPPFLAGS+= -DUSE_OPENFIRM
|
|
.endif
|
|
|
|
|
|
.endif
|
|
|
|
MAN= eeprom.8
|
|
|
|
CPPFLAGS+= -I${.CURDIR}
|
|
|
|
.include <bsd.prog.mk>
|