summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-11-09 09:48:13 -0800
committerGary E. Miller <gem@rellim.com>2018-11-09 09:48:13 -0800
commit52c9138aacbaf0300af6b3a3ffbc77271f9d5019 (patch)
treee472d999a717d85d38f78c1c94b8932d319aa520 /SConstruct
parented2ccb1317e825acb42fa4d852255757cb48685f (diff)
downloadgpsd-52c9138aacbaf0300af6b3a3ffbc77271f9d5019.tar.gz
gpsrinex: A new tool to create RINEX 3 obs files.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct13
1 files changed, 12 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index d6fffd90..2ed7c14f 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1301,6 +1301,9 @@ gpsdctl = env.Program('gpsdctl', ['gpsdctl.c'],
gpspipe = env.Program('gpspipe', ['gpspipe.c'],
LIBS=['gps_static'],
parse_flags=gpsflags)
+gpsrinex = env.Program('gpsrinex', ['gpsrinex.c'],
+ LIBS=['gps_static'],
+ parse_flags=gpsflags)
gps2udp = env.Program('gps2udp', ['gps2udp.c'],
LIBS=['gps_static'],
parse_flags=gpsflags)
@@ -1324,7 +1327,15 @@ if env["gpsd"]:
sbin_binaries += [gpsd]
if env["gpsdclients"]:
sbin_binaries += [gpsdctl]
- bin_binaries += [gpsdecode, gpsctl, gpspipe, gps2udp, gpxlogger, lcdgps]
+ bin_binaries += [
+ gps2udp,
+ gpsctl,
+ gpsdecode,
+ gpspipe,
+ gpsrinex,
+ gpxlogger,
+ lcdgps
+ ]
if env['pps'] and (env["timeservice"] or env["gpsdclients"]):
bin_binaries += [ntpshmmon]
if tiocmiwait: