Files
PX4-Autopilot/src/modules/flight_mode_manager/tasks/Utility/Makefile
T
2021-01-17 15:46:30 +01:00

13 lines
271 B
Makefile

.PHONY: all tests clean
all: test_velocity_smoothing
test_velocity_smoothing: test_velocity_smoothing.cpp VelocitySmoothing.cpp
@g++ $^ -std=c++11 -I ../../../ -o $@
tests: test_velocity_smoothing
@echo "Test velocity smoothing"
clean:
@rm test_velocity_smoothing