summaryrefslogtreecommitdiff
path: root/contrib/SConstruct
diff options
context:
space:
mode:
authorFred Wright <fw@fwright.net>2016-09-09 14:00:03 -0700
committerGary E. Miller <gem@rellim.com>2016-09-22 17:26:59 -0700
commitf3b7734e5970f0626138f125b0a01d9dc0aae9a2 (patch)
tree959edc7832e40117f9fd6f482fe60a079294b227 /contrib/SConstruct
parentc0c9ed85b0d3a199b51b4a9f4eeed7bd24712225 (diff)
downloadgpsd-f3b7734e5970f0626138f125b0a01d9dc0aae9a2.tar.gz
Removes obsolete ppscheck references from contrib/SConstruct.
Also adds comment regarding gpsd_config.h requirement. TESTED: Default build now succeeds. Signed-off-by: Gary E. Miller <gem@rellim.com>
Diffstat (limited to 'contrib/SConstruct')
-rw-r--r--contrib/SConstruct5
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/SConstruct b/contrib/SConstruct
index 5a0e9fcd..785fb179 100644
--- a/contrib/SConstruct
+++ b/contrib/SConstruct
@@ -3,11 +3,12 @@
# won't get used on a daily basis, but someone might find them useful for
# tinkering with their gear.
+# Note that ../gpsd_config.h is required and is built separately
+
ashctl = Program("ashctl", ["ashctl.c", "../strl.c"])
binlog = Program("binlog", "binlog.c")
binreplay = Program("binreplay", "binreplay.c", parse_flags=['-lutil'])
lla2ecef = Program("lla2ecef", "lla2ecef.c", parse_flags=['-lm'])
motosend = Program("motosend", ["motosend.c", "../strl.c"])
-ppscheck = Program("ppscheck", "ppscheck.c")
-Default(ashctl, binlog, binreplay, lla2ecef, motosend, ppscheck)
+Default(ashctl, binlog, binreplay, lla2ecef, motosend)