e641d42a37
Small GPIO driver that exports a few pins using a virtual file system. Currently the two user leds and the user button are exported. Change-Id: I001d017ae27cd17b635587873f7da981054da459
16 lines
237 B
Makefile
16 lines
237 B
Makefile
# Makefile for the gpio driver.
|
|
PROG= gpio
|
|
SRCS= gpio.c gpio_omap.c
|
|
|
|
DPADD+= ${LIBBLOCKDRIVER} ${LIBSYS}
|
|
LDADD+= -lvtreefs -lsys
|
|
|
|
#
|
|
# This is a system driver.
|
|
CPPFLAGS+= -D_SYSTEM=1
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include <minix.service.mk>
|