Makefile revision 1.12
11.1Sthorpej# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 21.12Smacallan# $NetBSD: Makefile,v 1.12 2006/08/16 03:24:57 macallan Exp $ 31.1Sthorpej 41.8Seeh.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" \ 51.12Smacallan || ${MACHINE} == "sparc64" || ${MACHINE} == "macppc" 61.1SthorpejPROG= eeprom 71.1Sthorpej 81.7SlukemYPREFIX=getdate_ 91.3Sthorpej 101.9SmrgSRCS= getdate.y main.c 111.1Sthorpej 121.8Seeh.if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" 131.1SthorpejSRCS+= ophandlers.c 141.1Sthorpej.endif 151.12Smacallan 161.12Smacallan.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" 171.9SmrgSRCS+= eehandlers.c 181.9Smrg.endif 191.9Smrg 201.12Smacallan.if ${MACHINE} == "macppc" 211.12SmacallanSRCS+= ofhandlers.c 221.12SmacallanCPPFLAGS+= -DUSE_OPENFIRM 231.12Smacallan.endif 241.12Smacallan 251.12Smacallan 261.2Smrg.endif 271.2Smrg 281.2SmrgMAN= eeprom.8 291.11Spetrov 301.11SpetrovCPPFLAGS+= -I${.CURDIR} 311.1Sthorpej 321.1Sthorpej.include <bsd.prog.mk> 33