summaryrefslogtreecommitdiff
path: root/contrib/SConstruct
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2011-07-05 08:57:37 -0400
committerEric S. Raymond <esr@thyrsus.com>2011-07-05 08:57:37 -0400
commit4ac0042e1c4aee1206435728d4c68d195a1964e2 (patch)
tree4ab4205b6900af9d6678c766e0aa22e2bc21f0ce /contrib/SConstruct
parentcf766a26a17e24ccf1f99517fb3a1869267d9e80 (diff)
downloadgpsd-4ac0042e1c4aee1206435728d4c68d195a1964e2.tar.gz
Move to new build system.
Diffstat (limited to 'contrib/SConstruct')
-rw-r--r--contrib/SConstruct12
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/SConstruct b/contrib/SConstruct
new file mode 100644
index 00000000..314665f8
--- /dev/null
+++ b/contrib/SConstruct
@@ -0,0 +1,12 @@
+# This is a skeleton makefile 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")
+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)