Files
FFmpeg/libswscale/Makefile
Ramiro Polla f523577512 swscale/aarch64: convert generation of ops_entries.c to a fate test
This serves two purposes:
- there is a test to check that the file is always up-to-date
- it can easily be regenerated using fate's own infrastructure
2026-06-19 14:33:28 +00:00

56 lines
2.7 KiB
Makefile

NAME = swscale
DESC = FFmpeg image rescaling library
HEADERS = swscale.h \
version.h \
version_major.h \
OBJS = alphablend.o \
cms.o \
csputils.o \
hscale.o \
hscale_fast_bilinear.o \
filters.o \
format.o \
framepool.o \
gamma.o \
graph.o \
input.o \
lut3d.o \
options.o \
output.o \
rgb2rgb.o \
slice.o \
swscale.o \
swscale_unscaled.o \
utils.o \
version.o \
yuv2rgb.o \
vscale.o \
OBJS-$(CONFIG_UNSTABLE) += \
ops.o \
ops_chain.o \
ops_dispatch.o \
ops_memcpy.o \
ops_optimizer.o \
uops.o \
uops_backend.o \
ifeq ($(CONFIG_UNSTABLE),yes)
include $(SRC_PATH)/libswscale/vulkan/Makefile
endif
# Objects duplicated from other libraries for shared builds
SHLIBOBJS += log2_tab.o half2float.o
# Windows resource file
SHLIBOBJS-$(HAVE_GNU_WINDRES) += swscaleres.o
TESTPROGS = colorspace \
floatimg_cmp \
pixdesc_query \
swscale \
sws_ops \
sws_ops_aarch64 \