mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
9ca8248cc2
Original commit message from CVS: Massive build fixup. Will send message to -devel list later with details on the changes and what they mean for Makefile.am writers. Check docs/random/omega/build/TODO for a list of things that I had to make sure of. NOTE: this requires a complete rebuild of all plugins, since I also changed the STATE enum to a bitfield instead of sequential numbers.
30 lines
614 B
Makefile
30 lines
614 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
|
|
ieeetest_CFLAGS = $(GNOME_CFLAGS)
|
|
ieeetest_LDFLAGS = $(GNOME_LIBS)
|
|
|
|
noinst_HEADERS = dct.h
|
|
|
|
CFLAGS += -O2 $(FOMIT_FRAME_POINTER) -finline-functions -ffast-math
|