blob: 06e189f318d6e2d8c46bfd1c7efd0e31c9b13ba0 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
noinst_LTLIBRARIES = libdg.la
libdg_la_CPPFLAGS = \
-I$(top_srcdir)/include -I$(top_srcdir)/hugin \
$(SSEFLAGS) \
$(ZITA_CPPFLAGS) $(SNDFILE_CFLAGS) $(EXPAT_CFLAGS) $(SAMPLERATE_CFLAGS) \
$(PTHREAD_CFLAGS)
libdg_la_LIBADD = \
$(ZITA_LIBS) $(SNDFILE_LIBS) $(EXPAT_LIBS) $(SAMPLERATE_LIBS) \
$(PTHREAD_LIBS)
nodist_libdg_la_SOURCES = \
audiocachefile.cc \
audiocache.cc \
audiocacheeventhandler.cc \
audiocacheidmanager.cc \
audioinputenginemidi.cc \
audiofile.cc \
bytesizeparser.cc \
channel.cc \
channelmixer.cc \
chresampler.cc \
configfile.cc \
configparser.cc \
drumgizmo.cc \
drumkit.cc \
drumkitloader.cc \
drumkitparser.cc \
events.cc \
inputprocessor.cc \
instrument.cc \
instrumentparser.cc \
latencyfilter.cc \
memchecker.cc \
midimapparser.cc \
midimapper.cc \
mutex.cc \
path.cc \
powerlist.cc \
random.cc \
sample.cc \
semaphore.cc \
saxparser.cc \
staminafilter.cc \
thread.cc \
versionstr.cc
EXTRA_DIST = \
atomic.h \
audio.h \
audiocache.h \
audiocacheeventhandler.h \
audiocachefile.h \
audiocacheidmanager.h \
audiofile.h \
audioinputengine.h \
audioinputenginemidi.h \
audiooutputengine.h \
beatmapper.h \
bytesizeparser.h \
channel.h \
channelmixer.h \
chresampler.h \
configfile.h \
configparser.h \
cpp11fix.h \
drumgizmo.h \
drumkit.h \
drumkitloader.h \
drumkitparser.h \
events.h \
inputfilter.h \
inputprocessor.h \
instrument.h \
instrumentparser.h \
latencyfilter.h \
memchecker.h \
midimapparser.h \
midimapper.h \
mutex.h \
nolocale.h \
notifier.h \
path.h \
platform.h \
powerlist.h \
random.h \
rangemap.h \
sample.h \
saxparser.h \
semaphore.h \
settings.h \
staminafilter.h \
syncedsettings.h \
thread.h \
versionstr.h \
\
audiocache.cc \
audiocacheeventhandler.cc \
audiocachefile.cc \
audiocacheidmanager.cc \
audiofile.cc \
audioinputengine.cc \
audioinputenginemidi.cc \
audiooutputengine.cc \
beatmapper.cc \
bytesizeparser.cc \
channel.cc \
channelmixer.cc \
chresampler.cc \
configfile.cc \
configparser.cc \
drumgizmo.cc \
drumkit.cc \
drumkitloader.cc \
drumkitparser.cc \
events.cc \
inputprocessor.cc \
instrument.cc \
instrumentparser.cc \
latencyfilter.cc \
memchecker.cc \
midimapparser.cc \
midimapper.cc \
mutex.cc \
path.cc \
powerlist.cc \
random.cc \
sample.cc \
saxparser.cc \
semaphore.cc \
staminafilter.cc \
thread.cc \
versionstr.cc
|