diff options
author | Gary E. Miller <gem@rellim.com> | 2018-11-09 09:48:13 -0800 |
---|---|---|
committer | Gary E. Miller <gem@rellim.com> | 2018-11-09 09:48:13 -0800 |
commit | 52c9138aacbaf0300af6b3a3ffbc77271f9d5019 (patch) | |
tree | e472d999a717d85d38f78c1c94b8932d319aa520 /SConstruct | |
parent | ed2ccb1317e825acb42fa4d852255757cb48685f (diff) | |
download | gpsd-52c9138aacbaf0300af6b3a3ffbc77271f9d5019.tar.gz |
gpsrinex: A new tool to create RINEX 3 obs files.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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: |