summaryrefslogtreecommitdiff
path: root/contrib/SConstruct
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2015-03-17 19:53:47 -0400
committerEric S. Raymond <esr@thyrsus.com>2015-03-17 19:53:47 -0400
commitd8094dbd2f7213e3e521681459d50da2d175cd69 (patch)
tree4edab615dba2d58de3ca87b0aefc0be272ff58eb /contrib/SConstruct
parentc927830c589c6d32d74c89684fb243a0fced62ee (diff)
downloadgpsd-d8094dbd2f7213e3e521681459d50da2d175cd69.tar.gz
Add ppscheck to the contrib/ default build.
Diffstat (limited to 'contrib/SConstruct')
-rw-r--r--contrib/SConstruct3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/SConstruct b/contrib/SConstruct
index 314665f8..4d747516 100644
--- a/contrib/SConstruct
+++ b/contrib/SConstruct
@@ -5,8 +5,9 @@
ashctl = Program("ashctl", ["ashctl.c", "../strl.c"])
binlog = Program("binlog", "binlog.c")
+ppscheck = Program("ppscheck", "ppscheck.c")
binreplay = Program("binreplay", "binreplay.c", parse_flags=['-lutil'])
lla2ecef = Program("lla2ecef", "lla2ecef.c", parse_flags=['-lm'])
motosend = Program("motosend", ["motosend.c", "../strl.c"])
-Default(ashctl, binlog, binreplay, lla2ecef, motosend)
+Default(ashctl, binlog, binreplay, lla2ecef, motosend, ppscheck)