Home | History | Annotate | Line # | Download | only in eeprom
Makefile revision 1.4
      1 #	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
      2 #	$NetBSD: Makefile,v 1.4 1997/09/24 07:22:39 jeremy Exp $
      3 
      4 .if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc"
      5 PROG=	eeprom
      6 
      7 YFLAGS+=-pgetdate_
      8 
      9 BINGRP=	kmem
     10 BINMODE=2555
     11 
     12 SRCS=	eehandlers.c getdate.c main.c
     13 
     14 .if ${MACHINE} == "sparc"
     15 SRCS+=	ophandlers.c
     16 DPADD=	${LIBKVM}
     17 LDADD=	-lkvm
     18 .endif
     19 
     20 CLEANFILES+=getdate.c y.tab.h
     21 .endif
     22 
     23 MAN=	eeprom.8
     24 
     25 WARNS=1
     26 
     27 .include <bsd.prog.mk>
     28