1# $OpenBSD: Makefile,v 1.12 2007/11/14 20:38:32 kettenis Exp $ 2 3.if ${MACHINE} == "macppc" || ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" 4PROG= eeprom 5 6BINGRP= kmem 7BINMODE=2555 8 9SRCS= getdate.c main.c 10SRCS+= ophandlers.c optree.c 11 12. if ${MACHINE} == "sparc" 13SRCS+= eehandlers.c 14. endif 15 16CLEANFILES+=getdate.c y.tab.h 17.else 18NOPROG=yes 19.endif 20 21MAN= eeprom.8 22MANSUBDIR=macppc sparc sparc64 23 24.include <bsd.prog.mk> 25