gstreamer/gst-libs/gst/resample/Makefile.am
Thomas Vander Stichele f00917f6d4 adding resample lib
Original commit message from CVS:
adding resample lib
2001-12-23 10:44:28 +00:00

26 lines
450 B
Makefile

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