comparison Plugins/Output/crossfade/Makefile.am @ 259:88b38e2414a1 trunk

[svn] First attempt at porting the crossfade plugin; patches from bug #363 applied, GThreadified, includes fixed. Will most probably not compile as of yet.
author chainsaw
date Sun, 04 Dec 2005 15:58:55 -0800
parents
children 5fd398406cf7
comparison
equal deleted inserted replaced
258:f4a57eac3ba3 259:88b38e2414a1
1 lib_LTLIBRARIES = libcrossfade.la
2
3 gtk_sources = \
4 interface-2.0.c \
5 interface-2.0.h \
6 support-2.0.c \
7 support-2.0.h \
8 callbacks.c \
9 callbacks.h
10 interface-2.0.c:
11 glade-2 -w interface-2.0.glade
12
13 if HAVE_LIBFFTW_COND
14 fftw_sources = fft.c fft.h
15 fftw_libs = -lfftw -lrfftw
16 endif
17
18 if HAVE_LIBSAMPLERATE_COND
19 samplerate_libs = -lsamplerate
20 endif
21
22 libdir = $(plugindir)/$(OUTPUT_PLUGIN_DIR)
23
24 libcrossfade = @PLUGIN_LDFLAGS@
25 libcrossfade_la_LIBADD = $(fftw_libs) $(samplerate_libs)
26 libcrossfade_la_SOURCES = \
27 crossfade.c \
28 crossfade.h \
29 configure.c \
30 configure.h \
31 convert.c \
32 convert.h \
33 debug.c \
34 debug.h \
35 effect.c \
36 effect.h \
37 format.c \
38 format.h \
39 monitor.c \
40 monitor.h \
41 rate.c \
42 rate.h \
43 timing.c \
44 timing.h \
45 volume.c \
46 volume.h \
47 $(gtk_sources) \
48 $(fftw_sources)
49