Home | History | Annotate | Line # | Download | only in eeprom
Makefile revision 1.9
      1  1.1  thorpej #	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
      2  1.9      mrg #	$NetBSD: Makefile,v 1.9 2000/11/28 22:31:37 mrg Exp $
      3  1.1  thorpej 
      4  1.8      eeh .if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" \
      5  1.8      eeh 	|| ${MACHINE} == "sparc64"
      6  1.1  thorpej PROG=	eeprom
      7  1.1  thorpej 
      8  1.7    lukem YPREFIX=getdate_
      9  1.3  thorpej 
     10  1.9      mrg SRCS=	getdate.y main.c
     11  1.1  thorpej 
     12  1.8      eeh .if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64"
     13  1.1  thorpej SRCS+=	ophandlers.c
     14  1.1  thorpej .endif
     15  1.9      mrg .if ${MACHINE} != "sparc64"
     16  1.9      mrg SRCS+=	eehandlers.c
     17  1.9      mrg .endif
     18  1.9      mrg 
     19  1.2      mrg .endif
     20  1.2      mrg 
     21  1.2      mrg MAN=	eeprom.8
     22  1.1  thorpej 
     23  1.1  thorpej .include <bsd.prog.mk>
     24