diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-23 10:44:28 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-23 10:44:28 +0000 |
commit | 0d4f573fc103544c7972485b010072eda52a0e4b (patch) | |
tree | e8345784eb15612c6557e656fca8a108959d0545 /gst-libs/gst/resample/Makefile.am | |
parent | 9161ba1c22b8ac35faf76f34d84f34e16c51ef84 (diff) | |
download | gst-plugins-bad-0d4f573fc103544c7972485b010072eda52a0e4b.tar.gz gst-plugins-bad-0d4f573fc103544c7972485b010072eda52a0e4b.tar.bz2 gst-plugins-bad-0d4f573fc103544c7972485b010072eda52a0e4b.zip |
adding resample lib
Original commit message from CVS:
adding resample lib
Diffstat (limited to 'gst-libs/gst/resample/Makefile.am')
-rw-r--r-- | gst-libs/gst/resample/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gst-libs/gst/resample/Makefile.am b/gst-libs/gst/resample/Makefile.am new file mode 100644 index 00000000..4fe42224 --- /dev/null +++ b/gst-libs/gst/resample/Makefile.am @@ -0,0 +1,26 @@ +libdir = $(libdir)/gst + +lib_LTLIBRARIES = libresample.la + +if HAVE_CPU_I386 +ARCHCFLAGS = -march=i486 +else +if HAVE_CPU_PPC +ARCHCFLAGS = -Wa,-m7400 +else +ARCHCFLAGS = +endif +endif + +libresample_la_SOURCES = dtos.c functable.c resample.c resample.h +libresample_la_LIBADD = $(GST_LIBS) +libresample_la_CFLAGS = $(GST_CFLAGS) -ffast-math $(ARCHCFLAGS) + +noinst_HEADERS = resample.h + +#check_PROGRAMS = test +#test_SOURCES = test.c +#test_LDADD = libresample.la + + + |