blob: 8800c6b89b7287368c936d1d83f6757e98dfcba7 (
plain)
1
2
3
4
5
6
7
8
9
|
all: dabp-decoder
SRCS := main.cpp \
AACDecoder.h AACDecoder.cpp \
wavfile.h wavfile.cpp
dabp-decoder: $(SRCS)
g++ -g -Wall -std=c++17 -fsanitize=address -lfdk-aac -o dabp-decoder AACDecoder.cpp wavfile.cpp main.cpp
|