Makefile 271 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 .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