summaryrefslogtreecommitdiff
path: root/contrib/SConstruct
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-08-08 20:49:43 -0700
committerGary E. Miller <gem@rellim.com>2018-08-08 20:49:43 -0700
commit1a95834c2abb8aff5bead72f5a19a3da02be176a (patch)
tree7eb82d47efc27c01edea36a6eef8c076ab47833c /contrib/SConstruct
parent041447e3ba9171e529ba3376047da981899baea9 (diff)
downloadgpsd-1a95834c2abb8aff5bead72f5a19a3da02be176a.tar.gz
contrib/SConstruct: fix build recipes.
strl.c is gone. Build clock_test by default.
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)