Files
FFmpeg/libpostproc/Makefile
T

24 lines
637 B
Makefile
Raw Normal View History

NAME = postproc
DESC = FFmpeg postprocessing library
FFLIBS = avutil
2012-09-27 11:12:18 -03:00
HEADERS = postprocess.h \
version.h \
2022-02-23 14:28:03 +02:00
version_major.h \
2003-02-14 21:27:25 +00:00
OBJS = postprocess.o \
version.o \
2025-05-04 16:29:19 +02:00
TESTOBJS = tests/test_utils.o \
# Windows resource file
SHLIBOBJS-$(HAVE_GNU_WINDRES) += postprocres.o
2025-04-07 20:51:13 +02:00
2025-04-22 23:53:06 +02:00
TESTPROGS = blocktest \
stripetest \
temptest \
2025-05-04 16:29:19 +02:00
$(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