-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
72 lines (65 loc) · 1.13 KB
/
Makefile
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
lib.name = quatkram
class.sources = \
atan2~.c \
faccbounce~.c \
faccwrap~.c \
faccleak~.c \
nchans~.c \
noisen~.c \
qacc~.c \
qmul~.c \
qdiv~.c \
qvtrans~.c \
urn~.c \
mc_route~.c \
zc~.c \
tetra2pos.c \
tabsmear~.c \
tabredraw.c \
tabloop~.c \
sampdel~.c \
frft~.c \
frft.c \
mc_conv~.c \
mc_conv2d~.c \
${empty}
datafiles = \
qconj~.pd \
qinv~.pd \
qnorm~.pd \
qnormalize~.pd \
qmag~.pd \
qfromgyroaccel~.pd \
zc~-help.pd \
tetra2pos-help.pd \
sampdel~-help.pd \
atan2~-help.pd \
faccbounce~-help.pd \
faccwrap~-help.pd \
faccleak~-help.pd \
mc_conv~-help.pd \
mc_conv2d~-help.pd \
mc_route~-help.pd \
noisen~-help.pd \
urn~-help.pd \
qacc~-help.pd \
qmul~-help.pd \
qdiv~-help.pd \
${empty}
define forDarwin
cflags += -I/opt/homebrew/include
ldflags += -L/opt/homebrew/lib
endef
define forWindows
cflags += -IC:/msys64/mingw64/include
ldflags += -LC:/msys64/mingw64/lib
endef
define forLinux
cflags += -I/usr/include
ldflags += -L/usr/lib
endef
# Add FFTW dependency
ldlibs += -lfftw3
objectsdir = ./build
PDLIBBUILDER_DIR=./pd-lib-builder
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder