diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-23 19:40:53 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-23 19:40:53 +0000 |
commit | 82c5fb840e93289b9a6356d7daf7f79eb95c3ac7 (patch) | |
tree | 0deb67f1dfabd0c7524338e1d7d8ee978827d39b /gst-libs/gst/idct/Makefile.am | |
parent | 042f91736b7623b4365114fe2e4dc3b78c4d866a (diff) | |
download | gst-plugins-bad-82c5fb840e93289b9a6356d7daf7f79eb95c3ac7.tar.gz gst-plugins-bad-82c5fb840e93289b9a6356d7daf7f79eb95c3ac7.tar.bz2 gst-plugins-bad-82c5fb840e93289b9a6356d7daf7f79eb95c3ac7.zip |
more fixes
Original commit message from CVS:
more fixes
Diffstat (limited to 'gst-libs/gst/idct/Makefile.am')
-rw-r--r-- | gst-libs/gst/idct/Makefile.am | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gst-libs/gst/idct/Makefile.am b/gst-libs/gst/idct/Makefile.am new file mode 100644 index 00000000..8dabafab --- /dev/null +++ b/gst-libs/gst/idct/Makefile.am @@ -0,0 +1,31 @@ +if HAVE_LIBMMX +GSTIDCTARCH_SRCS = mmxidct.S mmx32idct.c sseidct.S +else +GSTIDCTARCH_SRCS = +endif + +librarydir = $(libdir)/gst + +library_LTLIBRARIES = libgstidct.la + +libgstidct_la_SOURCES = \ + fastintidct.c \ + floatidct.c \ + gstidct.c \ + intidct.c \ + $(GSTIDCTARCH_SRCS) + +libgstidctincludedir = $(includedir)/gst/idct +libgstidctinclude_HEADERS = idct.h + +check_PROGRAMS = ieeetest + +ieeetest_SOURCES = ieeetest.c +ieeetest_LDADD = libgstidct.la +ieeetest_CFLAGS = $(GST_CFLAGS) +ieeetest_LDFLAGS = $(GST_LIBS) + +noinst_HEADERS = dct.h + +libgstidct_la_LIBADD = $(GST_LIBS) +libgstidct_la_CFLAGS = $(GST_CFLAGS) -finline-functions -ffast-math |