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