forked from Archive/PX4-Autopilot
Add make tests to Makefile
This commit is contained in:
parent
a18a6b3b61
commit
a4606dc270
7
Makefile
7
Makefile
|
@ -230,6 +230,13 @@ updatesubmodules:
|
||||||
testbuild:
|
testbuild:
|
||||||
$(Q) (cd $(PX4_BASE) && $(MAKE) distclean && $(MAKE) archives && $(MAKE) -j8)
|
$(Q) (cd $(PX4_BASE) && $(MAKE) distclean && $(MAKE) archives && $(MAKE) -j8)
|
||||||
|
|
||||||
|
#
|
||||||
|
# Unittest targets. Builds and runs the host-level
|
||||||
|
# unit tests.
|
||||||
|
.PHONY: tests
|
||||||
|
tests:
|
||||||
|
$(Q) (cd $(PX4_BASE)/unittests && $(MAKE) unittests)
|
||||||
|
|
||||||
#
|
#
|
||||||
# Cleanup targets. 'clean' should remove all built products and force
|
# Cleanup targets. 'clean' should remove all built products and force
|
||||||
# a complete re-compilation, 'distclean' should remove everything
|
# a complete re-compilation, 'distclean' should remove everything
|
||||||
|
|
Loading…
Reference in New Issue