summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2017-07-03 21:31:58 -0400
committerEric S. Raymond <esr@thyrsus.com>2017-07-03 21:31:58 -0400
commit8fc40f92170b61b03406cbe363947415ac40f0a7 (patch)
tree71ec178f8c548315ef3407079418a57540a14cbe /SConstruct
parent816896a8c37ea41827917a5afa650919c310ea5d (diff)
downloadgpsd-8fc40f92170b61b03406cbe363947415ac40f0a7.tar.gz
Give timeservice option a base set of drivers, have it build cgps.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct9
1 files changed, 5 insertions, 4 deletions
diff --git a/SConstruct b/SConstruct
index 22797fd4..689c0fdc 100644
--- a/SConstruct
+++ b/SConstruct
@@ -283,9 +283,12 @@ if ARGUMENTS.get('minimal'):
and not (name is "gpsd" or name is "gpsdclients"))):
env[name] = False
-# Time-service build = stripped-down and some diagnostic tools
+# Time-service build = stripped-down with some diagnostic tools
if ARGUMENTS.get('timeservice'):
timerelated = ("gpsd",
+ "nmea0183", # For generic hats of unknown type.
+ "ublox", # For the Uputronics board
+ "mtk3301", # For the Adafruit HAT
"ipv6",
"magic_hat",
"ncurses",
@@ -1253,10 +1256,8 @@ if env['pps'] and (env["timeservice"] or env["gpsdclients"]):
if tiocmiwait:
bin_binaries += [ppscheck]
if env["ncurses"]:
- if env["gpsdclients"]:
- bin_binaries += [cgps]
if env["timeservice"] or env["gpsdclients"]:
- bin_binaries += [gpsmon]
+ bin_binaries += [cgps, gpsmon]
# Test programs - always link locally and statically
test_bits = env.Program('test_bits', ['test_bits.c'],