summaryrefslogtreecommitdiff
path: root/contrib/SConstruct
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2015-03-18 17:56:37 -0400
committerEric S. Raymond <esr@thyrsus.com>2015-03-18 18:03:24 -0400
commit2bebcb6cd7f5a980bf3a23718d67add0aaba836c (patch)
tree5abbdfeeadcf867ba546eedce8c03220b2f3e5ba /contrib/SConstruct
parentc1ddee79eaa35abee5c16f23edadb268eb506872 (diff)
downloadgpsd-2bebcb6cd7f5a980bf3a23718d67add0aaba836c.tar.gz
It only makes sense to look for 1PPS on DCE signals. Add an explanation.
All regressiion tests pass.
Diffstat (limited to 'contrib/SConstruct')
-rw-r--r--contrib/SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/SConstruct b/contrib/SConstruct
index 4d747516..5a0e9fcd 100644
--- a/contrib/SConstruct
+++ b/contrib/SConstruct
@@ -1,13 +1,13 @@
-# This is a skeleton makefile to simplify building some of these little
+# This is a skeleton recipe to simplify building some of these little
# utilities. They probably won't be useful to many users, and they probably
# won't get used on a daily basis, but someone might find them useful for
# tinkering with their gear.
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"])
+ppscheck = Program("ppscheck", "ppscheck.c")
Default(ashctl, binlog, binreplay, lla2ecef, motosend, ppscheck)