hydrophonitor/audio-logger/Makefile
2022-10-03 19:32:32 +03:00

17 lines
183 B
Makefile

all:
cargo build --release
test: all
mkdir -p recordings
bash run_test.sh
clean:
cargo clean
fclean: clean
rm -rf recordings
re: fclean all
.PHONY: all clean fclean re test