You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
411 B
18 lines
411 B
aarch64dir = $(pluginsdir)/aarch64
|
|
aarch64_LTLIBRARIES =
|
|
|
|
libdeinterlace_aarch64_plugin_la_SOURCES = \
|
|
isa/aarch64/simd/deinterlace.c isa/aarch64/simd/merge.S
|
|
|
|
if HAVE_ARM64
|
|
aarch64_LTLIBRARIES += \
|
|
libdeinterlace_aarch64_plugin.la
|
|
endif
|
|
|
|
libdeinterlace_sve_plugin_la_SOURCES = \
|
|
isa/aarch64/sve/deinterlace.c isa/aarch64/sve/merge.S
|
|
|
|
if HAVE_SVE
|
|
aarch64_LTLIBRARIES += \
|
|
libdeinterlace_sve_plugin.la
|
|
endif
|
|
|