mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
03148fd174
Fix linking failures with -all_load due to multiple log2_tabs Signed-off-by: Carl Eugen Hoyos <cehoyos@ag.or.at>
19 lines
501 B
Makefile
19 lines
501 B
Makefile
include $(SUBDIR)../config.mak
|
|
|
|
NAME = swresample
|
|
FFLIBS = avutil
|
|
|
|
HEADERS = swresample.h \
|
|
version.h \
|
|
|
|
OBJS = audioconvert.o \
|
|
dither.o \
|
|
rematrix.o \
|
|
resample.o \
|
|
swresample.o \
|
|
|
|
OBJS-$(CONFIG_LIBSOXR) += soxr_resample.o
|
|
OBJS-$(CONFIG_SHARED) += log2_tab.o
|
|
|
|
TESTPROGS = swresample
|