blob: a8e5c746a2529814df3b3f095fcba72a957cb6fc (
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
|
noinst_LTLIBRARIES = libdg.la libzr.la libpugi.la
# libzita-resampler
libzr_la_CPPFLAGS = \
-ffast-math -D_USE_MATH_DEFINES $(PTHREAD_CFLAGS) \
-I$(top_srcdir)/zita-resampler/libs
libzr_la_LIBADD = \
$(PTHREAD_LIBS)
libzr_la_SOURCES = \
zrwrapper.cc \
$(top_srcdir)/zita-resampler/libs/resampler.cc \
$(top_srcdir)/zita-resampler/libs/resampler-table.cc
# pugixml
libpugi_la_CPPFLAGS =
libpugi_la_LIBADD =
libpugi_la_SOURCES = \
$(top_srcdir)/pugixml/src/pugixml.cpp
# libdg
libdg_la_CPPFLAGS = \
$(DEBUG_FLAGS) \
-I$(top_srcdir)/hugin -I$(top_srcdir)/pugixml/src \
$(SSEFLAGS) -I$(top_srcdir)/zita-resampler/libs
$(SNDFILE_CFLAGS) $(PTHREAD_CFLAGS)
libdg_la_LIBADD = \
$(SNDFILE_LIBS) $(PTHREAD_LIBS) libzr.la libpugi.la
libdg_la_SOURCES = \
audiocachefile.cc \
audiocache.cc \
audiocacheeventhandler.cc \
audiocacheidmanager.cc \
audioinputenginemidi.cc \
audiofile.cc \
bytesizeparser.cc \
channel.cc \
channelmixer.cc \
configfile.cc \
configparser.cc \
directory.cc \
domloader.cc \
dgxmlparser.cc \
drumgizmo.cc \
drumkit.cc \
drumkitloader.cc \
events.cc \
events_ds.cc \
inputprocessor.cc \
instrument.cc \
latencyfilter.cc \
midimapparser.cc \
midimapper.cc \
path.cc \
powerlist.cc \
random.cc \
sample.cc \
sample_selection.cc \
sem.cc \
staminafilter.cc \
thread.cc \
velocityfilter.cc \
versionstr.cc
EXTRA_DIST = \
$(libzr_la_SOURCES) \
$(libpugi_la_SOURCES) \
$(libdg_la_SOURCES) \
DGDOM.h \
atomic.h \
audio.h \
audiocache.h \
audiocacheeventhandler.h \
audiocachefile.h \
audiocacheidmanager.h \
audiofile.h \
audioinputengine.h \
audioinputenginemidi.h \
audiooutputengine.h \
audiotypes.h \
bytesizeparser.h \
channel.h \
channelmixer.h \
configfile.h \
configparser.h \
directory.h \
cpp11fix.h \
dgxmlparser.h \
domloader.h \
drumgizmo.h \
drumkit.h \
drumkitloader.h \
event.h \
events.h \
events_ds.h \
grid.h \
id.h \
inputfilter.h \
inputprocessor.h \
instrument.h \
latencyfilter.h \
logger.h \
memory_heap.h \
midimapparser.h \
midimapper.h \
nolocale.h \
notifier.h \
path.h \
platform.h \
powerlist.h \
random.h \
range.h \
rangemap.h \
sample.h \
sample_selection.h \
sem.h \
settings.h \
staminafilter.h \
syncedsettings.h \
thread.h \
velocityfilter.h \
versionstr.h \
zrwrapper.h
|