Home | History | Annotate | Line # | Download | only in eeprom
Makefile revision 1.8
      1 #	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
      2 #	$NetBSD: Makefile,v 1.8 1999/01/17 20:02:29 eeh Exp $
      3 
      4 .if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" \
      5 	|| ${MACHINE} == "sparc64"
      6 PROG=	eeprom
      7 
      8 YPREFIX=getdate_
      9 
     10 BINGRP=	kmem
     11 BINMODE=2555
     12 
     13 SRCS=	eehandlers.c getdate.y main.c
     14 
     15 .if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64"
     16 SRCS+=	ophandlers.c
     17 DPADD=	${LIBKVM}
     18 LDADD=	-lkvm
     19 .endif
     20 .endif
     21 
     22 MAN=	eeprom.8
     23 
     24 .include <bsd.prog.mk>
     25