chrony/test/kernel/Makefile
Miroslav Lichvar 5190539ce1 test: add tests for system adjtime() and ntp_adjtime()
Include a test program to determine how the adjtime() implementation
behaves. Check the range of supported offset, support for readonly
operation, and slew rate with different update intervals and offsets.

Also, add a test for ntp_adjtime() to check what frequency range it
supports.
2015-09-17 10:56:51 +02:00

7 lines
81 B
Makefile

CFLAGS=-O2 -Wall
PROGS=adjtime ntpadjtime
all: $(PROGS)
clean:
rm -f $(PROGS)