Makefile revision 1.14
11.1Sthorpej# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 21.14Sgarbled# $NetBSD: Makefile,v 1.14 2007/03/01 16:49:48 garbled Exp $ 31.1Sthorpej 41.8Seeh.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" \ 51.14Sgarbled || ${MACHINE} == "sparc64" || ${MACHINE} == "macppc" \ 61.14Sgarbled || ${MACHINE} == "prep" 71.1SthorpejPROG= eeprom 81.1Sthorpej 91.13SchristosSRCS= main.c 101.13SchristosLDADD+=-lutil 111.13SchristosDPADD+=${LIBUTIL} 121.1Sthorpej 131.8Seeh.if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" 141.1SthorpejSRCS+= ophandlers.c 151.1Sthorpej.endif 161.12Smacallan 171.12Smacallan.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" 181.9SmrgSRCS+= eehandlers.c 191.9Smrg.endif 201.9Smrg 211.12Smacallan.if ${MACHINE} == "macppc" 221.12SmacallanSRCS+= ofhandlers.c 231.12SmacallanCPPFLAGS+= -DUSE_OPENFIRM 241.12Smacallan.endif 251.12Smacallan 261.14Sgarbled.if ${MACHINE} == "prep" 271.14SgarbledSRCS+= prephandlers.c 281.14SgarbledCPPFLAGS+= -DUSE_PREPNVRAM 291.14Sgarbled.endif 301.12Smacallan 311.2Smrg.endif 321.2Smrg 331.2SmrgMAN= eeprom.8 341.11Spetrov 351.11SpetrovCPPFLAGS+= -I${.CURDIR} 361.1Sthorpej 371.1Sthorpej.include <bsd.prog.mk> 38