blob: 9c3ed31f8c622030a95066290d36b791031d53c6 (
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++ -Wall -std=c++17 -fsanitize=address -lfdk-aac -o dabp-decoder AACDecoder.cpp wavfile.cpp main.cpp
|