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