2013-01-28 12:54:44 +01:00
|
|
|
# Makefile for the gpio driver.
|
|
|
|
PROG= gpio
|
2013-02-06 15:46:21 +01:00
|
|
|
SRCS= gpio.c
|
2013-01-28 12:54:44 +01:00
|
|
|
|
|
|
|
DPADD+= ${LIBBLOCKDRIVER} ${LIBSYS}
|
2013-06-17 14:23:31 +02:00
|
|
|
LDADD+= -lvtreefs -lsys -lgpio -lpadconf -lclkconf
|
2013-01-28 12:54:44 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# This is a system driver.
|
|
|
|
CPPFLAGS+= -D_SYSTEM=1
|
|
|
|
|
|
|
|
MAN=
|
|
|
|
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
|
|
|
|
.include <minix.service.mk>
|