summaryrefslogtreecommitdiff
path: root/contrib/SConstruct
blob: 5fe25e8623eb37f6c8e41318217bcc1e7fadb695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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.

# Note that ../gpsd_config.h is required and is built separately


strl = StaticObject("strl", "../strl.c")

ashctl = Program("ashctl", ["ashctl.c", strl])
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])

Default(ashctl, binlog, binreplay, lla2ecef, motosend)