hydrophonitor/audio-logger/Makefile

18 lines
202 B
Makefile
Raw Normal View History

2022-09-22 04:06:49 +00:00
all:
cargo build --release
2022-09-25 14:44:48 +00:00
test: all
2022-09-22 04:06:49 +00:00
mkdir -p recordings
2022-09-25 14:44:48 +00:00
bash run_test.sh
2022-09-22 04:06:49 +00:00
clean:
cargo clean
fclean: clean
rm -rf recordings
re: fclean
cargo build --release
2022-09-25 14:44:48 +00:00
.PHONY: all clean fclean re test