summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-05-18 20:04:57 -0700
committerKeith Packard <keithp@keithp.com>2012-05-18 20:19:01 -0700
commit5d8b9d524d6424ff98dcc4155fe8b8bd892b6d8f (patch)
tree98a4698176483f6a1e310f1f844576c806aea71a /src/Makefile
parent1541fc0bde71f503b1ae5757497e9e1e6d023111 (diff)
altos: Add conversion between Pa and meters
To be used with the MS5607 which generates data in calibrated units. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index db9bd508..c2e324c4 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -4,6 +4,7 @@
#
vpath make-altitude util
+vpath make-altitude-pa util
vpath make-kalman util
vpath kalman.5c kalman
vpath kalman_filter.5c kalman
@@ -45,11 +46,14 @@ uninstall:
all-recursive: all-local
-all-local: altitude.h ao_kalman.h
+all-local: altitude.h altitude-pa.h ao_kalman.h
altitude.h: make-altitude
nickle $< > $@
+altitude-pa.h: make-altitude-pa
+ nickle $< > $@
+
ao_kalman.h: make-kalman kalman.5c kalman_filter.5c load_csv.5c matrix.5c
bash $< kalman > $@