aboutsummaryrefslogtreecommitdiff
path: root/Tools/tests-host/Makefile
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2014-04-28 20:29:45 +0200
committerLorenz Meier <lm@inf.ethz.ch>2014-04-28 20:29:45 +0200
commit7aefcb7a09a12fae2dcbe2bc2360948aefbb66a4 (patch)
tree3a808a65302c32c82c9947dc491afd932c053ecf /Tools/tests-host/Makefile
parent238a3636faae13c4ba52ab9581a305c7a069276e (diff)
downloadpx4-firmware-7aefcb7a09a12fae2dcbe2bc2360948aefbb66a4.tar.gz
px4-firmware-7aefcb7a09a12fae2dcbe2bc2360948aefbb66a4.tar.bz2
px4-firmware-7aefcb7a09a12fae2dcbe2bc2360948aefbb66a4.zip
Add autodeclination testing - no-op right now
Diffstat (limited to 'Tools/tests-host/Makefile')
-rw-r--r--Tools/tests-host/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/Tools/tests-host/Makefile b/Tools/tests-host/Makefile
index 15ccf1594..fd001e4d7 100644
--- a/Tools/tests-host/Makefile
+++ b/Tools/tests-host/Makefile
@@ -3,7 +3,7 @@ CC=g++
CFLAGS=-I. -I../../src/modules -I ../../src/include -I../../src/drivers \
-I../../src -D__EXPORT="" -Dnullptr="0" -lm
-all: mixer_test sbus2_test
+all: mixer_test sbus2_test autodeclination_test
MIXER_FILES=../../src/systemcmds/tests/test_mixer.cpp \
../../src/systemcmds/tests/test_conv.cpp \
@@ -20,13 +20,20 @@ SBUS2_FILES=../../src/modules/px4iofirmware/sbus.c \
hrt.cpp \
sbus2_test.cpp
+AUTODECLINATION_FILES=../../src/lib/geo/geo_mag_declination.c \
+ hrt.cpp \
+ autodeclination_test.cpp
+
mixer_test: $(MIXER_FILES)
$(CC) -o mixer_test $(MIXER_FILES) $(CFLAGS)
sbus2_test: $(SBUS2_FILES)
$(CC) -o sbus2_test $(SBUS2_FILES) $(CFLAGS)
+autodeclination_test: $(SBUS2_FILES)
+ $(CC) -o autodeclination_test $(SBUS2_FILES) $(CFLAGS)
+
.PHONY: clean
clean:
- rm -f $(ODIR)/*.o *~ core $(INCDIR)/*~ mixer_test sbus2_test \ No newline at end of file
+ rm -f $(ODIR)/*.o *~ core $(INCDIR)/*~ mixer_test sbus2_test autodeclination_test \ No newline at end of file