minix/drivers/readclock/Makefile
Thomas Cort 039c8db774 readclock.drv: add support for the TPS65950 RTC
On the BeagleBoard-xM, the RTC is located on the Power Management IC
(PMIC). To keep things consistent, access to the PMIC's RTC is done
through the readclock driver. The readclock driver forwards the request
on to the TPS65950 driver which does the work of manipulating the
registers on the chip.

Change-Id: I53cefbb59c5a9ab87fab90df3cc1a75a6e430f58
2013-08-09 12:41:58 +02:00

18 lines
283 B
Makefile

# Makefile for readclock 'driver'
PROG= readclock.drv
.include "arch/${MACHINE_ARCH}/Makefile.inc"
SRCS+= readclock.c forward.c forward.h
DPADD+= ${LIBSYS} ${LIBTIMERS}
LDADD+= -lsys -ltimers
MAN=
BINDIR?= /sbin
CPPFLAGS+= -D_SYSTEM=1 -I${.CURDIR}
.include <minix.service.mk>