mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
9af006a1f0
Original commit message from CVS: much build fixage turns out synaesthesia and smoothwav depend on gtk, maybe they should go to ext/
20 lines
422 B
Makefile
20 lines
422 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstvideoscale.la
|
|
|
|
if HAVE_CPU_I386
|
|
ARCHSRCS = \
|
|
videoscale_x86.c \
|
|
videoscale_x86_asm.s
|
|
else
|
|
ARCHSRCS =
|
|
endif
|
|
|
|
libgstvideoscale_la_SOURCES = \
|
|
gstvideoscale.c \
|
|
videoscale.c \
|
|
$(ARCHSRCS)
|
|
libgstvideoscale_la_CFLAGS = -O2 $(FOMIT_FRAME_POINTER) -funroll-all-loops -finline-functions -ffast-math $(GST_CFLAGS)
|
|
|
|
noinst_HEADERS = gstvideoscale.h videoscale_x86.h
|
|
|