039c8db774
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
17 lines
283 B
Makefile
17 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>
|