1 1.1 thorpej # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 2 1.2 mrg # $NetBSD: Makefile,v 1.2 1997/06/23 04:51:21 mrg Exp $ 3 1.1 thorpej 4 1.2 mrg .if ${MACHINE} == "sun3" || ${MACHINE} == "sparc" 5 1.1 thorpej PROG= eeprom 6 1.1 thorpej 7 1.1 thorpej BINGRP= kmem 8 1.1 thorpej BINMODE=2555 9 1.1 thorpej 10 1.1 thorpej SRCS= eehandlers.c getdate.c main.c 11 1.1 thorpej 12 1.1 thorpej .if ${MACHINE} == "sparc" 13 1.1 thorpej SRCS+= ophandlers.c 14 1.1 thorpej DPADD= ${LIBKVM} 15 1.1 thorpej LDADD= -lkvm 16 1.1 thorpej .endif 17 1.1 thorpej 18 1.1 thorpej CLEANFILES+=getdate.c y.tab.h 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