mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
a62ca0048e
Original commit message from CVS: Updated autogen.sh/configure.ac and various Makefiles to make the configure script set up all gcc specific compiler arguments, rather than hardcoding them in the Makefile.am files
32 lines
719 B
Makefile
32 lines
719 B
Makefile
if HAVE_LIBMMX
|
|
GSTIDCTARCH_SRCS = mmxidct.S mmx32idct.c sseidct.S
|
|
else
|
|
GSTIDCTARCH_SRCS =
|
|
endif
|
|
|
|
librarydir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
library_LTLIBRARIES = libgstidct.la
|
|
|
|
libgstidct_la_SOURCES = \
|
|
fastintidct.c \
|
|
floatidct.c \
|
|
idct.c \
|
|
intidct.c \
|
|
$(GSTIDCTARCH_SRCS)
|
|
|
|
libgstidctincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/idct
|
|
libgstidctinclude_HEADERS = idct.h
|
|
noinst_HEADERS = dct.h
|
|
|
|
## check_PROGRAMS = ieeetest
|
|
|
|
## ieeetest_SOURCES = ieeetest.c
|
|
## ieeetest_LDADD = libgstidct.la
|
|
## ieeetest_CFLAGS = $(GST_CFLAGS)
|
|
## ieeetest_LDFLAGS = $(GST_LIBS)
|
|
|
|
|
|
libgstidct_la_LIBADD =
|
|
libgstidct_la_CFLAGS = $(GST_CFLAGS) $(GST_OPT_CFLAGS)
|
|
libgstidct_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|