2434f06806
- Fix compiler warnings.
28 lines
422 B
Makefile
28 lines
422 B
Makefile
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
|
|
# $NetBSD: Makefile,v 1.3 1997/07/23 20:58:36 thorpej Exp $
|
|
|
|
.if ${MACHINE} == "sun3" || ${MACHINE} == "sparc"
|
|
PROG= eeprom
|
|
|
|
YFLAGS+=-pgetdate_
|
|
|
|
BINGRP= kmem
|
|
BINMODE=2555
|
|
|
|
SRCS= eehandlers.c getdate.c main.c
|
|
|
|
.if ${MACHINE} == "sparc"
|
|
SRCS+= ophandlers.c
|
|
DPADD= ${LIBKVM}
|
|
LDADD= -lkvm
|
|
.endif
|
|
|
|
CLEANFILES+=getdate.c y.tab.h
|
|
.endif
|
|
|
|
MAN= eeprom.8
|
|
|
|
WARNS=1
|
|
|
|
.include <bsd.prog.mk>
|