Skip to content
This repository has been archived by the owner on Apr 13, 2021. It is now read-only.

Commit

Permalink
v3 target in Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfine committed Apr 29, 2016
1 parent 8f8dcc4 commit b666bfd
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ifeq ($(PIKSI_HW),v3)
CMAKEFLAGS += -DCMAKE_SYSTEM_PROCESSOR=cortex-a9
endif

.PHONY: all tests firmware docs hitl .FORCE
.PHONY: all tests firmware docs hitl_setup hitl hitlv3 .FORCE

all: firmware # tests

Expand Down Expand Up @@ -78,7 +78,7 @@ docs:
$(MAKE) -C docs/diagrams
doxygen docs/Doxyfile

hitl: firmware
hitl_setup: firmware
# Usage:
# `make hitl` will run the default "quick" test plan (1 capture job)
# Optionally specify a desired test plan:
Expand All @@ -90,6 +90,12 @@ hitl: firmware
else \
git clone [email protected]:swift-nav/hitl_tools.git build/hitl_tools --depth 1; \
fi
bash build/hitl_tools/make_hitl.sh $(TEST_PLAN)

hitl: hitl_setup
TEST_PLAN=$(TEST_PLAN) TEST_CONFIG=$(TEST_CONFIG) bash build/hitl_tools/make_hitl.sh


hitlv3: hitl_setup
TEST_PLAN=$(TEST_PLAN) TEST_CONFIG=v3_config bash build/hitl_tools/make_hitl.sh

.FORCE:

0 comments on commit b666bfd

Please sign in to comment.