FFmpeg/libpostproc/Makefile
Michael Niedermayer e5640e67d0
libpostproc/tests: Factor ff_chksum() out
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2025-05-05 19:13:29 +02:00

23 lines
637 B
Makefile

NAME = postproc
DESC = FFmpeg postprocessing library
FFLIBS = avutil
HEADERS = postprocess.h \
version.h \
version_major.h \
OBJS = postprocess.o \
version.o \
TESTOBJS = tests/test_utils.o \
# Windows resource file
SHLIBOBJS-$(HAVE_GNU_WINDRES) += postprocres.o
TESTPROGS = blocktest \
stripetest \
temptest \
$(SUBDIR)tests/blocktest$(EXESUF): $(SUBDIR)tests/test_utils.o
$(SUBDIR)tests/stripetest$(EXESUF): $(SUBDIR)tests/test_utils.o
$(SUBDIR)tests/temptest$(EXESUF): $(SUBDIR)tests/test_utils.o