2006-09-29 22:40:39 -04:00
|
|
|
_DIST =
|
|
|
|
SUBDIRS =
|
|
|
|
AUTOMAKE_OPTS= gnu
|
2006-09-29 23:03:44 -04:00
|
|
|
NAME=resample
|
2006-09-29 22:40:39 -04:00
|
|
|
|
|
|
|
AM_CFLAGS = $(new_AM_CFLAGS) -I./src
|
|
|
|
AM_CPPFLAGS = $(AM_CFLAGS)
|
|
|
|
AM_LDFLAGS = $(new_AM_LDFLAGS) -lm
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = libresample.la
|
|
|
|
libresample_la_SOURCES = src/resample.c src/resamplesubs.c src/filterkit.c
|
|
|
|
libresample_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
libresample_la_LDFLAGS = -version-info 1:3:1
|
|
|
|
|
|
|
|
library_includedir = $(prefix)/include
|
|
|
|
library_include_HEADERS = include/libresample.h
|
|
|
|
|
|
|
|
bin_PROGRAMS = testresample
|
|
|
|
testresample_SOURCES = tests/testresample.c
|
|
|
|
testresample_CFLAGS = $(AM_CFLAGS)
|
|
|
|
testresample_LDADD = ${top_builddir}/libresample.la
|
|
|
|
|
2008-08-18 12:53:31 -04:00
|
|
|
#if SAMPLE
|
|
|
|
#bin_PROGRAMS += compareresample
|
|
|
|
#compareresample_SOURCES = tests/compareresample.c
|
|
|
|
#compareresample_CFLAGS = $(AM_CFLAGS)
|
|
|
|
#compareresample_LDADD = ${top_builddir}/libresample.la -lsamplerate
|
|
|
|
#endif
|
2006-09-29 22:40:39 -04:00
|
|
|
|
2008-08-18 12:53:31 -04:00
|
|
|
#if SNDFILE
|
|
|
|
#bin_PROGRAMS += resample_sndfile
|
|
|
|
#resample_sndfile_SOURCES = tests/resample-sndfile.c
|
|
|
|
#resample_sndfile_CFLAGS = $(AM_CFLAGS)
|
|
|
|
#resample_sndfile_LDADD = ${top_builddir}/libresample.la -lsndfile
|
|
|
|
#endif
|