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