blob: 892bfb7f676a3d3c7ee8af3156c89ad203030d05 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
|
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/include/remix $(SNDFILE_CFLAGS) -I$(top_srcdir)/src/ctxdata
lib_LTLIBRARIES = libremix.la
if BUILD_MONITOR
monitor_sources = remix_monitor.c
endif
if HAVE_LIBSNDFILE1
sndfile_sources = remix_sndfile.c
endif
libremix_la_SOURCES = \
$(monitor_sources) \
$(sndfile_sources) \
remix_base.c \
remix_channel.c \
remix_channelset.c \
remix_chunk.c \
remix_context.c \
remix_debug.c \
remix_deck.c \
remix_envelope.c \
remix_error.c \
remix_gain.c \
remix_layer.c \
remix_meta.c \
remix_null.c \
remix_pcm.c \
remix_plugin.c \
remix_sound.c \
remix_squaretone.c \
remix_stream.c \
remix_time.c \
remix_track.c \
remix_private.h \
remix_compat.h
libremix_la_LIBADD = @SNDFILE_LIBS@
|