From 52c9138aacbaf0300af6b3a3ffbc77271f9d5019 Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Fri, 9 Nov 2018 09:48:13 -0800 Subject: gpsrinex: A new tool to create RINEX 3 obs files. --- SConstruct | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'SConstruct') 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: -- cgit v1.2.1