1 1.1 thorpej # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 2 1.3 thorpej # $NetBSD: Makefile,v 1.3 1997/07/23 20:58:36 thorpej 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.3 thorpej YFLAGS+=-pgetdate_ 8 1.3 thorpej 9 1.1 thorpej BINGRP= kmem 10 1.1 thorpej BINMODE=2555 11 1.1 thorpej 12 1.1 thorpej SRCS= eehandlers.c getdate.c 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.1 thorpej 20 1.1 thorpej CLEANFILES+=getdate.c y.tab.h 21 1.2 mrg .endif 22 1.2 mrg 23 1.2 mrg MAN= eeprom.8 24 1.3 thorpej 25 1.3 thorpej WARNS=1 26 1.1 thorpej 27 1.1 thorpej .include <bsd.prog.mk> 28