-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
227 lines (199 loc) · 4.51 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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# Makefile to build 'zexy' for Pure Data.
# Needs Makefile.pdlibbuilder as helper makefile for platform-dependent build
# settings and rules.
# library name
lib.name = zexy
make-lib-executable=yes
with-regex=yes
with-lpt=yes
# input source file (class name == source file basename)
class.sources = \
src/0x260x260x7e.c \
src/0x2e.c \
src/0x3c0x7e.c \
src/0x3d0x3d0x7e.c \
src/0x3e0x7e.c \
src/0x7c0x7c0x7e.c \
src/a2l.c \
src/abs~.c \
src/absgn~.c \
src/atof.c \
src/atoi.c \
src/avg~.c \
src/blockmirror~.c \
src/blockshuffle~.c \
src/blockswap~.c \
src/date.c \
src/demultiplex~.c \
src/demultiplex.c \
src/dfreq~.c \
src/dirac~.c \
src/doublepole~.c \
src/drip.c \
src/envrms~.c \
src/fifop.c \
src/freadln.c \
src/fwriteln.c \
src/glue.c \
src/index.c \
src/length.c \
src/lifop.c \
src/limiter~.c \
src/list2int.c \
src/list2lists.c \
src/list2symbol.c \
src/lister.c \
src/listfind.c \
src/liststorage.c \
src/longload.c \
src/lpt.c \
src/makesymbol.c \
src/matchbox.c \
src/mavg.c \
src/minmax.c \
src/msgfile.c \
src/multiline~.c \
src/multiplex~.c \
src/multiplex.c \
src/multireceive.c \
src/niagara.c \
src/noish~.c \
src/noisi~.c \
src/operating_system.c \
src/pack~.c \
src/pack.c \
src/packel.c \
src/pdf~.c \
src/prime.c \
src/quantize~.c \
src/rawprint.c \
src/regex.c \
src/relay.c \
src/repack.c \
src/repeat.c \
src/route~.c \
src/sfplay.c \
src/sfrecord.c \
src/sgn~.c \
src/sigzero~.c \
src/sleepgrain.c \
src/sort.c \
src/step~.c \
src/strcmp.c \
src/sum.c \
src/swap~.c \
src/symbol2list.c \
src/tabdump.c \
src/tabminmax.c \
src/tabread4~~.c \
src/tabset.c \
src/tavg~.c \
src/time.c \
src/unpack~.c \
src/unpack.c \
src/urn.c \
src/wrap.c \
src/z~.c \
$(empty)
lib.setup.sources = \
src/zexy.c \
src/z_zexy.c \
$(empty)
## TODO: install help-files for these aliases
l.class.sources = src/lister.c
demux~.class.sources = src/demultiplex~.c
demux.class.sources = src/demultiplex.c
mux~.class.sources = src/multiplex~.c
mux.class.sources = src/multiplex.c
l2s.class.sources = src/list2symbol.c
s2l.class.sources = src/symbol2list.c
l2i.class.sources = src/list2int.c
any2list.class.sources = src/a2l.c
# abs-aliases: any2list, l2i
# all extra files to be included in binary distribution of the library
datafiles = \
AUTHORS \
README.txt \
LICENSE.txt \
ChangeLog \
zexy-meta.pd \
$(empty)
datafiles += \
$(wildcard abs/*.pd) \
$(wildcard reference/*.pd) \
$(empty)
cflags =
cflags += -DVERSION='"2.4.2"'
DATE_FMT = %Y/%m/%d at %H:%M:%S UTC
ifdef SOURCE_DATE_EPOCH
BUILD_DATE ?= $(shell date -u -d "@$(SOURCE_DATE_EPOCH)" "+$(DATE_FMT)" 2>/dev/null || date -u -r "$(SOURCE_DATE_EPOCH)" "+$(DATE_FMT)" 2>/dev/null || date -u "+$(DATE_FMT)")
endif
ifdef BUILD_DATE
cflags += -DBUILD_DATE='"$(BUILD_DATE)"'
endif
ifeq ($(make-lib-executable),yes)
cflags += -DZEXY_LIBRARY
endif
ifeq ($(with-regex),yes)
cflags += -DHAVE_REGEX_H
endif
ifneq ($(with-lpt),yes)
cflags += -DZ_WANT_LPT=0
endif
define forWindows
ifeq ($(with-regex),yes)
regex.class.ldlibs += -lregex
matchbox.class.ldlibs += -lregex
ifeq ($(make-lib-executable),yes)
ldlibs += -lregex
endif
endif
endef
define forLinux
# on linux we need <sys/io.h> for the [lpt] object, so check if it is there...
ifeq ($(with-lpt),yes)
ifeq ($(shell $(CPP) -x c -include "sys/io.h" /dev/null >/dev/null 2>&1 || echo no), no)
cflags += -DZ_WANT_LPT=0
endif
endif
endef
# include Makefile.pdlibbuilder from submodule directory 'pd-lib-builder'
PDLIBBUILDER_DIR=pd-lib-builder/
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder
COPY=cp
# aliases
vpath %.pd abs reference
zexyaliases = \
any2list.pd any2list-help.pd \
demux-help.pd demux~-help.pd \
mux-help.pd mux~-help.pd \
l2i.pd l2i-help.pd \
l2s-help.pd s2l-help.pd l-help.pd \
$(empty)
datafiles += $(zexyaliases)
# create aliases
$(zexyaliases):
test -e $< && $(COPY) $< $@
# delete aliases
.PHONY: clean_zexyalias
clean_zexyalias:
-rm -f $(zexyaliases)
clean: clean_zexyalias
# alias dependencies
any2list.pd: a2l.pd
any2list-help.pd: a2l-help.pd
l2i.pd: list2int.pd
l2i-help.pd: list2int-help.pd
l2s-help.pd: list2symbol-help.pd
s2l-help.pd: symbol2list-help.pd
l-help.pd: lister-help.pd
mux-help.pd: multiplex-help.pd
mux~-help.pd: multiplex~-help.pd
demux-help.pd: demultiplex-help.pd
demux~-help.pd: demultiplex~-help.pd
all: $(zexyaliases)
.PHONY: check style
style:
astyle --options=src/astyle.rc src/*.c src/*.h
check: all
LIBDIR=$(CURDIR) find tests/*/ -type f -name "*.pd" -exec tests/testrunner.sh -v -Xls {} "+"