aboutsummaryrefslogtreecommitdiffstats
path: root/dabp-decode/Makefile
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2026-01-15 11:06:55 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2026-01-15 11:07:47 +0100
commit1f112f14ff0bb3cb77f97c8d945bece9dd90fc4c (patch)
treeb5bbe1d19799fb240f8fd93349937fb0051aa6e4 /dabp-decode/Makefile
parent23ade5792e57fd380aa72de9039148a7f946f3d6 (diff)
downloadmmbtools-aux-master.tar.gz
mmbtools-aux-master.tar.bz2
mmbtools-aux-master.zip
Add dabp-decoderHEADmaster
Diffstat (limited to 'dabp-decode/Makefile')
-rw-r--r--dabp-decode/Makefile9
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