mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
15 lines
152 B
Makefile
15 lines
152 B
Makefile
#
|
|
# GNU makefile
|
|
#
|
|
all: clean
|
|
./test_unit.sh
|
|
./test_streams.sh
|
|
./test_bins.sh
|
|
|
|
debug: all
|
|
|
|
release: all
|
|
|
|
clean:
|
|
rm -f *.raw *.flac *.cmp *.log core
|