Makefile revision 1.3
11.1Sthorpej# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 21.3Sthorpej# $NetBSD: Makefile,v 1.3 1997/07/23 20:58:36 thorpej Exp $ 31.1Sthorpej 41.2Smrg.if ${MACHINE} == "sun3" || ${MACHINE} == "sparc" 51.1SthorpejPROG= eeprom 61.1Sthorpej 71.3SthorpejYFLAGS+=-pgetdate_ 81.3Sthorpej 91.1SthorpejBINGRP= kmem 101.1SthorpejBINMODE=2555 111.1Sthorpej 121.1SthorpejSRCS= eehandlers.c getdate.c main.c 131.1Sthorpej 141.1Sthorpej.if ${MACHINE} == "sparc" 151.1SthorpejSRCS+= ophandlers.c 161.1SthorpejDPADD= ${LIBKVM} 171.1SthorpejLDADD= -lkvm 181.1Sthorpej.endif 191.1Sthorpej 201.1SthorpejCLEANFILES+=getdate.c y.tab.h 211.2Smrg.endif 221.2Smrg 231.2SmrgMAN= eeprom.8 241.3Sthorpej 251.3SthorpejWARNS=1 261.1Sthorpej 271.1Sthorpej.include <bsd.prog.mk> 28