fix #816 to add variety to System Status Word...
[ntpsec.git] / ntpfrob / wscript
blobe856a73692a56b1a8b0926babfcf124343383114
1 # Copyright the NTPsec project contributors
3 # SPDX-License-Identifier: BSD-2-Clause
5 def build(ctx):
6     frob_sources = ['main.c', 'bumpclock.c', 'dump.c', 'jitter.c',
7                     'precision.c', 'pps-api.c', 'tickadj.c']
9     ctx(
10         features="c cprogram",
11         includes=[ctx.bldnode.parent.abspath(), "../include"],
12         install_path='${BINDIR}',
13         source=frob_sources,
14         target="ntpfrob",
15         use="M RT",
16     )
18     ctx.manpage(8, "ntpfrob-man.adoc")