mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
29204d9ee2
Original commit message from CVS: distcheck cleanups
30 lines
640 B
Makefile
30 lines
640 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) $(GST_CFLAGS)
|
|
ieeetest_LDFLAGS = $(GNOME_LIBS) $(GST_LIBS)
|
|
|
|
noinst_HEADERS = dct.h
|
|
|
|
CFLAGS += -O2 $(FOMIT_FRAME_POINTER) -finline-functions -ffast-math
|