test release

This commit is contained in:
2022-04-18 12:40:26 +02:00
parent 59ad1e47b3
commit c7990bf020
4 changed files with 14 additions and 7 deletions

View File

@@ -1,16 +1,16 @@
.DEFAULT_GOAL := all
clean:
rm -f randMus
rm -f build/*
compile: clean
gcc -o randMus -ggdb randMus.c
gcc -o build/randMus -ggdb randMus.c
run: compile
./randMus | aplay
./build/randMus | aplay
record: compile
rm -f out.ogg
./randMus|ffmpeg -f u16le -ar 8000 -ac 1 -i - -to 00:05:00 out.ogg
./build/randMus|ffmpeg -f u16le -ar 8000 -ac 1 -i - -to 00:05:00 out.ogg
all: compile run