Home | History | Annotate | Line # | Download | only in eeprom
Makefile revision 1.6
      1  1.1  thorpej #	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
      2  1.6       tv #	$NetBSD: Makefile,v 1.6 1998/04/09 00:32:40 tv Exp $
      3  1.1  thorpej 
      4  1.4   jeremy .if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc"
      5  1.1  thorpej PROG=	eeprom
      6  1.1  thorpej 
      7  1.3  thorpej YFLAGS+=-pgetdate_
      8  1.3  thorpej 
      9  1.1  thorpej BINGRP=	kmem
     10  1.1  thorpej BINMODE=2555
     11  1.1  thorpej 
     12  1.6       tv SRCS=	eehandlers.c getdate.y main.c
     13  1.1  thorpej 
     14  1.1  thorpej .if ${MACHINE} == "sparc"
     15  1.1  thorpej SRCS+=	ophandlers.c
     16  1.1  thorpej DPADD=	${LIBKVM}
     17  1.1  thorpej LDADD=	-lkvm
     18  1.1  thorpej .endif
     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