-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.def.mk
135 lines (123 loc) · 1.55 KB
/
config.def.mk
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
MODULES= \
base \
ftbl \
adsr \
autowah \
biscale \
blsaw \
blsquare \
bltriangle \
butlp \
butbp \
buthp \
butbr \
brown \
clamp \
clock \
compressor \
count \
crossfade \
delay \
diode \
dmetro \
dtrig \
expon \
in \
incr \
jcrev \
line \
loadwav \
lpc \
maygate \
metro \
noise \
nsmp \
osc \
paulstretch \
peaklim \
phaser \
phasor \
pinknoise \
prop \
pshift \
randmt \
random \
randh \
reverse \
rpt \
saturator \
samphold \
scale \
scrambler \
sdelay \
slice \
smoothdelay \
smoother \
spa \
sparec \
switch \
tadsr \
talkbox \
tblrec \
tdiv \
tenv \
tenv2 \
tenvx \
tgate \
thresh \
timer \
tin \
trand \
tseg \
tseq \
voc \
wavin \
wavout \
wpkorg35 \
zitarev \
bitcrush \
bigverb \
dcblocker \
fmpair \
rline \
vardelay \
peakeq \
modalres \
phasewarp \
tread \
oscmorph \
verbity \
TANGLED += \
tangled/osc.o \
tangled/bigverb.o \
tangled/dcblocker.o \
tangled/fmpair.o \
tangled/rline.o \
tangled/vardelay.o \
tangled/peakeq.o \
tangled/modalres.o \
tangled/phasewarp.o \
tangled/phasor.o \
tangled/scale.o \
NO_LIBSNDFILE=1
CFLAGS += -DNO_LIBSNDFILE
# ini parser needed for nsmp module
include lib/inih/Makefile
# Header files needed for modules generated with FAUST
CFLAGS += -Ilib/faust
# fft library
include lib/fft/Makefile
include lib/kissfft/Makefile
MODULES += fftwrapper
MODULES += padsynth
# Uncomment to use FFTW3 instead of kissfft.
# CFLAGS += -DUSE_FFTW3
# Soundpipe audio
include lib/spa/Makefile
# openlpc
include lib/openlpc/Makefile
# drwav
include lib/dr_wav/Makefile
CFLAGS += -fPIC -g
# Uncomment this to use double precision
#USE_DOUBLE=1