summaryrefslogtreecommitdiff
path: root/gst-libs/gst/resample/Makefile.am
blob: c1def79d123b9df91c1da9974f90fb9dce7bef61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
librarydir = $(libdir)/gst

library_LTLIBRARIES = libgstresample.la

if HAVE_CPU_I386
ARCHCFLAGS = -march=i486
else
if HAVE_CPU_PPC
ARCHCFLAGS = -Wa,-m7400
else
ARCHCFLAGS =
endif
endif

libgstresample_la_SOURCES = dtos.c functable.c resample.c resample.h
libgstresample_la_LIBADD = $(GST_LIBS)
libgstresample_la_CFLAGS = $(GST_CFLAGS) -ffast-math $(ARCHCFLAGS)
libgstresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)

noinst_HEADERS = resample.h

#check_PROGRAMS = test
#test_SOURCES = test.c
#test_LDADD = libresample.la