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.
7 lines
81 B
Makefile
7 lines
81 B
Makefile
CFLAGS=-O2 -Wall
|
|
PROGS=adjtime ntpadjtime
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -f $(PROGS)
|