mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
ae0d5d1889
Original commit message from CVS: Massive, massive update of most source files. I went through and cleaned up all the warnings that I could, which involved fixing some of the plugins. The configure.in script was re-arranged and cleaned up so, and a check for libtool 1.3.5 was added to autogen.sh. Added checks for Gtk and GNOME. Some plugins were removed from the list of things to build for various reasons. Added GST_DEBUG_FORCE_DISABLE in gstgetbits, since that's time critical and even an if() from a DEBUG can significantly increase runtimes.
34 lines
868 B
Makefile
34 lines
868 B
Makefile
|
|
if HAVE_LIBMMX
|
|
GSTIDCTARCH_SRCS = mmxidct.S mmx32idct.c sseidct.S
|
|
else
|
|
GSTIDCTARCH_SRCS =
|
|
endif
|
|
|
|
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstidct.la
|
|
|
|
libgstidct_la_SOURCES = \
|
|
fastintidct.c \
|
|
floatidct.c \
|
|
gstidct.c \
|
|
intidct.c \
|
|
$(GSTIDCTARCH_SRCS)
|
|
|
|
libgstidctincludedir = $(includedir)/gst/libs/gstidct
|
|
libgstidctinclude_HEADERS = gstidct.h
|
|
|
|
check_PROGRAMS = ieeetest
|
|
|
|
ieeetest_SOURCES = ieeetest.c
|
|
ieeetest_LDADD = libgstidct.la $(GLIB_LIBS) $(GTK_LIBS) $(top_srcdir)/gst/libgst.la
|
|
ieeetest_CFLAGS = $(shell gnome-config --cflags gnomeui) -g -Wall
|
|
ieeetest_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
|
|
noinst_HEADERS = dct.h
|
|
|
|
CFLAGS += -Wall -O2 -funroll-all-loops -finline-functions -ffast-math
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include
|
|
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_srcdir)/gst/libgst.la
|