mirror of
https://gitlab.com/chrony/chrony.git
synced 2025-12-03 16:55:07 -05:00
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.
8 lines
81 B
Makefile
8 lines
81 B
Makefile
CFLAGS=-O2 -Wall
|
|
PROGS=adjtime ntpadjtime
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -f $(PROGS)
|