aboutsummaryrefslogtreecommitdiffstats
path: root/dabp-decode/Makefile
diff options
context:
space:
mode:
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