Makefile revision 1.17
11.1Sthorpej# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 21.17Smacallan# $NetBSD: Makefile,v 1.17 2011/12/15 07:51:29 macallan Exp $ 31.1Sthorpej 41.15Sabs.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" \ 51.16Snakayama || ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" \ 61.17Smacallan || ${MACHINE} == "macppc" || ${MACHINE} == "prep" \ 71.17Smacallan || ${MACHINE} == "shark" 81.1SthorpejPROG= eeprom 91.1Sthorpej 101.13SchristosSRCS= main.c 111.13SchristosLDADD+=-lutil 121.13SchristosDPADD+=${LIBUTIL} 131.1Sthorpej 141.16Snakayama.if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" 151.1SthorpejSRCS+= ophandlers.c 161.1Sthorpej.endif 171.12Smacallan 181.16Snakayama.if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" 191.9SmrgSRCS+= eehandlers.c 201.9Smrg.endif 211.9Smrg 221.17Smacallan.if ${MACHINE} == "macppc" || ${MACHINE} == "shark" 231.12SmacallanSRCS+= ofhandlers.c 241.12SmacallanCPPFLAGS+= -DUSE_OPENFIRM 251.12Smacallan.endif 261.12Smacallan 271.14Sgarbled.if ${MACHINE} == "prep" 281.14SgarbledSRCS+= prephandlers.c 291.14SgarbledCPPFLAGS+= -DUSE_PREPNVRAM 301.14Sgarbled.endif 311.12Smacallan 321.2Smrg.endif 331.2Smrg 341.2SmrgMAN= eeprom.8 351.11Spetrov 361.11SpetrovCPPFLAGS+= -I${.CURDIR} 371.1Sthorpej 381.1Sthorpej.include <bsd.prog.mk> 39