summaryrefslogtreecommitdiff
path: root/contrib/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/SConstruct')
-rw-r--r--contrib/SConstruct8
1 files changed, 3 insertions, 5 deletions
diff --git a/contrib/SConstruct b/contrib/SConstruct
index 85c52940..6487a54e 100644
--- a/contrib/SConstruct
+++ b/contrib/SConstruct
@@ -6,13 +6,11 @@
# Note that ../gpsd_config.h is required and is built separately
-strl = StaticObject("strl", "../strl.c")
-
-ashctl = Program("ashctl", ["ashctl.c", strl])
+ashctl = Program("ashctl", "ashctl.c")
binlog = Program("binlog", "binlog.c")
binreplay = Program("binreplay", "binreplay.c", parse_flags=['-lutil'])
clock_test = Program("clock_test", "clock_test.c", parse_flags=['-lm'])
lla2ecef = Program("lla2ecef", "lla2ecef.c", parse_flags=['-lm'])
-motosend = Program("motosend", ["motosend.c", strl])
+motosend = Program("motosend", "motosend.c")
-Default(ashctl, binlog, binreplay, lla2ecef, motosend)
+Default(ashctl, binlog, binreplay, clock_test, lla2ecef, motosend)