Home | History | Annotate | Line # | Download | only in eeprom
Makefile revision 1.18
      1   1.1   thorpej #	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
      2  1.18  nakayama #	$NetBSD: Makefile,v 1.18 2013/03/15 20:22:44 nakayama Exp $
      3   1.1   thorpej 
      4  1.15       abs .if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" \
      5  1.16  nakayama 	|| ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" \
      6  1.17  macallan 	|| ${MACHINE} == "macppc" || ${MACHINE} == "prep" \
      7  1.17  macallan 	|| ${MACHINE} == "shark"
      8   1.1   thorpej PROG=	eeprom
      9   1.1   thorpej 
     10  1.13  christos SRCS=	main.c
     11  1.13  christos LDADD+=-lutil
     12  1.13  christos DPADD+=${LIBUTIL}
     13   1.1   thorpej 
     14  1.16  nakayama .if ${MACHINE} == "sparc" || ${MACHINE} == "sparc64"
     15   1.1   thorpej SRCS+=	ophandlers.c
     16  1.18  nakayama CPPFLAGS+=	-DUSE_OPENPROM
     17   1.1   thorpej .endif
     18  1.12  macallan 
     19  1.16  nakayama .if ${MACHINE} == "sun3" || ${MACHINE} == "sun3x" || ${MACHINE} == "sparc" 
     20   1.9       mrg SRCS+=	eehandlers.c
     21  1.18  nakayama CPPFLAGS+=	-DUSE_EEPROM
     22   1.9       mrg .endif
     23   1.9       mrg 
     24  1.17  macallan .if ${MACHINE} == "macppc" || ${MACHINE} == "shark"
     25  1.12  macallan SRCS+=		ofhandlers.c
     26  1.12  macallan CPPFLAGS+=	-DUSE_OPENFIRM
     27  1.12  macallan .endif
     28  1.12  macallan 
     29  1.14   garbled .if ${MACHINE} == "prep"
     30  1.14   garbled SRCS+=		prephandlers.c
     31  1.14   garbled CPPFLAGS+=	-DUSE_PREPNVRAM
     32  1.14   garbled .endif
     33  1.12  macallan 
     34   1.2       mrg .endif
     35   1.2       mrg 
     36   1.2       mrg MAN=	eeprom.8
     37  1.11    petrov 
     38  1.11    petrov CPPFLAGS+= -I${.CURDIR}
     39   1.1   thorpej 
     40   1.1   thorpej .include <bsd.prog.mk>
     41