diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2026-01-15 11:06:55 +0100 |
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2026-01-15 11:07:47 +0100 |
| commit | 1f112f14ff0bb3cb77f97c8d945bece9dd90fc4c (patch) | |
| tree | b5bbe1d19799fb240f8fd93349937fb0051aa6e4 /dabp-decode/Makefile | |
| parent | 23ade5792e57fd380aa72de9039148a7f946f3d6 (diff) | |
| download | mmbtools-aux-master.tar.gz mmbtools-aux-master.tar.bz2 mmbtools-aux-master.zip | |
Diffstat (limited to 'dabp-decode/Makefile')
| -rw-r--r-- | dabp-decode/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dabp-decode/Makefile b/dabp-decode/Makefile new file mode 100644 index 0000000..9c3ed31 --- /dev/null +++ b/dabp-decode/Makefile @@ -0,0 +1,9 @@ + +all: dabp-decoder + +SRCS := main.cpp \ + AACDecoder.h AACDecoder.cpp \ + wavfile.h wavfile.cpp + +dabp-decoder: $(SRCS) + g++ -Wall -std=c++17 -fsanitize=address -lfdk-aac -o dabp-decoder AACDecoder.cpp wavfile.cpp main.cpp |
