mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-05 11:50:35 +08:00
13 lines
271 B
Makefile
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
|