summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
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: