-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile.am
152 lines (140 loc) · 2.92 KB
/
Makefile.am
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
AM_CPPFLAGS = -I$(srcdir) -Wall -Wsign-compare -D_GNU_SOURCE
AM_CFLAGS = $(JACK_DEPS_CFLAGS) $(GLIB_DEPS_CFLAGS) $(FLUIDSYNTH_DEPS_CFLAGS) $(PYTHON_DEPS_CFLAGS) $(LIBSMF_DEPS_CFLAGS) $(LIBSNDFILE_DEPS_CFLAGS) $(LIBUSB_DEPS_CFLAGS) $(ARCH_OPT_CFLAGS) $(NCURSES_DEPS_CFLAGS)
lib_LTLIBRARIES = libcalfbox.la
bin_PROGRAMS = calfbox
noinst_PROGRAMS = calfbox_tests
calfbox_SOURCES = \
appmenu.c \
main.c \
menu.c \
menuitem.c \
ui.c
calfbox_LDADD = libcalfbox.la $(JACK_DEPS_LIBS) $(GLIB_DEPS_LIBS) $(FLUIDSYNTH_DEPS_LIBS) $(PYTHON_DEPS_LIBS) $(LIBSMF_DEPS_LIBS) $(LIBSNDFILE_DEPS_LIBS) $(LIBUSB_DEPS_LIBS) $(NCURSES_DEPS_LIBS) -lpthread -luuid -lm -lrt
calfbox_tests_SOURCES = \
tests.c
calfbox_tests_LDADD = libcalfbox.la $(GLIB_DEPS_LIBS) -lpthread -lm -lrt
libcalfbox_la_SOURCES = \
app.c \
auxbus.c \
blob.c \
chorus.c \
cmd.c \
compressor.c \
config-api.c \
delay.c \
distortion.c \
dom.c \
engine.c \
eq.c \
errors.c \
fbr.c \
fifo.c \
fluid.c \
fuzz.c \
fxchain.c \
gate.c \
hwcfg.c \
instr.c \
io.c \
jackinput.c \
jackio.c \
layer.c \
limiter.c \
master.c \
meter.c \
midi.c \
mididest.c \
module.c \
pattern.c \
pattern-maker.c \
phaser.c \
prefetch_pipe.c \
recsrc.c \
reverb.c \
rt.c \
sampler.c \
sampler_channel.c \
sampler_gen.c \
sampler_layer.c \
sampler_nif.c \
sampler_prevoice.c \
sampler_prg.c \
sampler_rll.c \
sampler_voice.c \
scene.c \
scripting.c \
seq.c \
seq-adhoc.c \
sfzloader.c \
sfzparser.c \
song.c \
streamplay.c \
streamrec.c \
tarfile.c \
tonectl.c \
tonewheel.c \
track.c \
usbaudio.c \
usbio.c \
usbmidi.c \
usbprobe.c \
wavebank.c
libcalfbox_la_LIBADD = $(JACK_DEPS_LIBS) $(GLIB_DEPS_LIBS) $(FLUIDSYNTH_DEPS_LIBS) $(PYTHON_DEPS_LIBS) $(LIBSMF_DEPS_LIBS) $(LIBSNDFILE_DEPS_LIBS) $(LIBUSB_DEPS_LIBS) -lpthread -luuid -lm -lrt
if USE_SSE
ARCH_OPT_CFLAGS=-msse -ffast-math
else
if USE_NEON
ARCH_OPT_CFLAGS=-mfloat-abi=hard -mfpu=neon -ffast-math
endif
endif
noinst_HEADERS = \
app.h \
auxbus.h \
biquad-float.h \
blob.h \
cmd.h \
config-api.h \
dom.h \
dspmath.h \
envelope.h \
engine.h \
eq.h \
errors.h \
fifo.h \
hwcfg.h \
instr.h \
io.h \
ioenv.h \
layer.h \
master.h \
menu.h \
menuitem.h \
meter.h \
midi.h \
mididest.h \
module.h \
onepole-int.h \
onepole-float.h \
pattern.h \
pattern-maker.h \
prefetch_pipe.h \
recsrc.h \
rt.h \
sampler.h \
sampler_impl.h \
sampler_layer.h \
sampler_prg.h \
scene.h \
scripting.h \
seq.h \
sfzloader.h \
sfzparser.h \
song.h \
stm.h \
tarfile.h \
tests.h \
track.h \
ui.h \
usbio_impl.h \
wavebank.h
EXTRA_DIST = cboxrc-example