845aabfe65
Change-Id: I9e1c87132404509ffec8bf22a8c6cc993df1aa73
14 lines
303 B
Makefile
14 lines
303 B
Makefile
# Makefile for the tsl2550 ambient light sensor found on the Weather Cape.
|
|
PROG= tsl2550
|
|
SRCS= tsl2550.c
|
|
|
|
DPADD+= ${LIBI2CDRIVER} ${LIBCHARDRIVER} ${LIBSYS} ${LIBTIMERS}
|
|
LDADD+= -li2cdriver -lchardriver -lsys -ltimers
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}
|
|
|
|
.include <minix.service.mk>
|