test release
This commit is contained in:
8
Makefile
8
Makefile
@@ -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
|
Reference in New Issue
Block a user