1 1.1 thorpej # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 2 1.8 eeh # $NetBSD: Makefile,v 1.8 1999/01/17 20:02:29 eeh Exp $ 3 1.1 thorpej 4 1.8 eeh .if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" \ 5 1.8 eeh || ${MACHINE} == "sparc64" 6 1.1 thorpej PROG= eeprom 7 1.1 thorpej 8 1.7 lukem YPREFIX=getdate_ 9 1.3 thorpej 10 1.1 thorpej BINGRP= kmem 11 1.1 thorpej BINMODE=2555 12 1.1 thorpej 13 1.6 tv SRCS= eehandlers.c getdate.y main.c 14 1.1 thorpej 15 1.8 eeh .if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" 16 1.1 thorpej SRCS+= ophandlers.c 17 1.1 thorpej DPADD= ${LIBKVM} 18 1.1 thorpej LDADD= -lkvm 19 1.1 thorpej .endif 20 1.2 mrg .endif 21 1.2 mrg 22 1.2 mrg MAN= eeprom.8 23 1.1 thorpej 24 1.1 thorpej .include <bsd.prog.mk> 25