-
Notifications
You must be signed in to change notification settings - Fork 13
/
Makefile
344 lines (312 loc) · 12.1 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
GIT_VERSION := "$(shell git describe --abbrev=4 --dirty --always --tags)"
CFLAGS = -Isrc -I/usr/local/include -DVERSION='$(GIT_VERSION)' \
-O3 $(OPT) -D_GNU_SOURCE \
-Wall -Wextra \
-Wno-deprecated-declarations \
-Wno-unused-parameter \
-Wno-unused-function \
-Wno-unused-variable
LDFLAGS = -L/usr/local/lib -lm
ifdef HOMEBREW_PREFIX
LDFLAGS += -L$(HOMEBREW_PREFIX)/opt/libffi/lib -L$(HOMEBREW_PREFIX)/opt/openssl@3/lib
CFLAGS += -I$(HOMEBREW_PREFIX)/opt/libffi/include -I$(HOMEBREW_PREFIX)/opt/openssl@3/include
endif
ifndef NOPEDANTIC
CFLAGS += -Wno-unused-but-set-variable
endif
ifdef WASI
CFLAGS += -std=c11 -Isrc/wasm \
-D_WASI_EMULATED_MMAN -D_WASI_EMULATED_SIGNAL \
-D_WASI_EMULATED_PROCESS_CLOCKS
LDFLAGS += -lwasi-emulated-mman -lwasi-emulated-signal \
-lwasi-emulated-process-clocks -Wl,--stack-first \
-Wl,-zstack-size=8388608 -Wl,--initial-memory=100663296 \
-o tpl.wasm
NOFFI = 1
NOSSL = 1
NOTHREADS = 1
ifdef WASI_CC
CC = $(WASI_CC)
endif
endif
ifdef WIN
ISOCLINE = 1
CC = x86_64-w64-mingw32-gcc
endif
ifdef ISOCLINE
CFLAGS += -DUSE_ISOCLINE=1
else
ifndef WASI
LDFLAGS += -lreadline
endif
endif
ifndef NOFFI
CFLAGS += -DUSE_FFI=1 -I/usr/local/opt/libffi/include
LDFLAGS += -lffi -ldl
endif
ifndef NOSSL
CFLAGS += -DUSE_OPENSSL=1 -I/usr/local/opt/openssl/include
LDFLAGS += -L/usr/local/opt/openssl/lib -lssl -lcrypto
endif
ifdef NORATIONAL_TREES
CFLAGS += -DUSE_RATIONAL_TREES=0
endif
ifndef NOTHREADS
CFLAGS += -DUSE_THREADS=1 -pthread
LDFLAGS += -pthread
ifeq ($(shell uname),Darwin)
LDFLAGS +=
else
LDFLAGS += -latomic
endif
endif
ifdef LTO
CFLAGS += -flto=$(LTO)
LDFLAGS += -flto=$(LTO)
endif
ifndef WASMOPT
WASMOPT = wasm-opt
endif
SRCOBJECTS = tpl.o \
src/base64.o \
src/bif_atts.o \
src/bif_bboard.o \
src/bif_contrib.o \
src/bif_control.o \
src/bif_csv.o \
src/bif_database.o \
src/bif_ffi.o \
src/bif_format.o \
src/bif_functions.o \
src/bif_maps.o \
src/bif_posix.o \
src/bif_predicates.o \
src/bif_sort.o \
src/bif_sregex.o \
src/bif_streams.o \
src/bif_tasks.o \
src/bif_threads.o \
src/heap.o \
src/history.o \
src/library.o \
src/list.o \
src/module.o \
src/network.o \
src/parser.o \
src/print.o \
src/prolog.o \
src/query.o \
src/skiplist.o \
src/terms.o \
src/toplevel.o \
src/unify.o \
src/utf8.o \
src/version.o
LIBOBJECTS += \
library/abnf.o \
library/apply.o \
library/arithmetic.o \
library/assoc.o \
library/atts.o \
library/builtins.o \
library/charsio.o \
library/concurrent.o \
library/clpz.o \
library/curl.o \
library/dcgs.o \
library/debug.o \
library/dict.o \
library/dif.o \
library/error.o \
library/format.o \
library/freeze.o \
library/gensym.o \
library/gsl.o \
library/heaps.o \
library/http.o \
library/iso_ext.o \
library/json.o \
library/lambda.o \
library/linda.o \
library/lists.o \
library/ordsets.o \
library/pairs.o \
library/pio.o \
library/random.o \
library/raylib.o \
library/rbtrees.o \
library/reif.o \
library/si.o \
library/sqlite3.o \
library/ugraphs.o \
library/uuid.o \
library/when.o
SRCOBJECTS += src/imath/imath.o
SRCOBJECTS += src/imath/imrat.o
SRCOBJECTS += src/sre/re.o
ifdef ISOCLINE
SRCOBJECTS += src/isocline/src/isocline.o
endif
OBJECTS = $(SRCOBJECTS) $(LIBOBJECTS)
library/%.c: library/%.pl
echo '#include <stddef.h>' > $@
xxd -i $^ >> $@
all: tpl
tpl: $(OBJECTS) Makefile README.md LICENSE
rm src/version.o
$(CC) $(CFLAGS) -o src/version.o -c src/version.c
$(CC) $(CFLAGS) -o tpl $(OBJECTS) $(OPT) $(LDFLAGS)
profile:
$(MAKE) 'OPT=$(OPT) -O0 -pg -DDEBUG'
debug:
$(MAKE) 'OPT=$(OPT) -O0 -g -DDEBUG'
release:
$(MAKE) 'OPT=$(OPT) -DNDEBUG'
install:
cp ./tpl ~/bin
tpl.wasm:
$(MAKE) WASI=1 'OPT=$(OPT) -DNDEBUG'
wasm: tpl.wasm
$(WASMOPT) --enable-bulk-memory tpl.wasm -o tpl-opt.wasm -O4
mv tpl-opt.wasm tpl.wasm
test:
./tests/run.sh
check:
./tests/run_valgrind.sh
leaks:
./tests/run_valgrind_leaks.sh
clean:
rm -f tpl tpl.wasm \
src/*.o src/imath/*.o src/isocline/src/*.o src/sre/*.o \
library/*.o library/*.c *.o samples/*.o samples/*.so \
vgcore.* *.core core core.* *.exe gmon.* \
samples/*.xwam
rm -f *.itf *.po *.xwam samples/*.itf samples/*.po
# from [gcc|clang] -MM src/*.c src/imath/*.c src/isocline/src/*.c src/sre/*.c
src/base64.o: src/base64.c src/base64.h
src/bif_atts.o: src/bif_atts.c src/threads.h src/heap.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/module.h src/parser.h src/prolog.h src/query.h src/builtins.h
src/bif_bboard.o: src/bif_bboard.c src/threads.h src/heap.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/module.h src/parser.h src/prolog.h src/query.h src/builtins.h
src/bif_contrib.o: src/bif_contrib.c src/threads.h src/trealla.h src/internal.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/query.h src/parser.h src/builtins.h
src/bif_control.o: src/bif_control.c src/threads.h src/heap.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/module.h src/parser.h src/prolog.h src/query.h src/builtins.h
src/bif_csv.o: src/bif_csv.c src/threads.h src/heap.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/module.h src/query.h src/parser.h src/builtins.h
src/bif_database.o: src/bif_database.c src/base64.h src/threads.h src/heap.h src/internal.h \
src/trealla.h src/cdebug.h src/stringbuf.h src/imath/imath.h \
src/imath/imrat.h src/imath/imath.h src/skiplist.h src/list.h \
src/utf8.h src/history.h src/library.h src/module.h src/parser.h \
src/prolog.h src/query.h src/builtins.h
src/bif_ffi.o: src/bif_ffi.c src/prolog.h src/threads.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/module.h src/query.h src/parser.h src/builtins.h src/heap.h
src/bif_format.o: src/bif_format.c src/network.h src/threads.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/query.h src/parser.h src/builtins.h
src/bif_functions.o: src/bif_functions.c src/threads.h src/heap.h src/internal.h \
src/trealla.h src/cdebug.h src/stringbuf.h src/imath/imath.h \
src/imath/imrat.h src/imath/imath.h src/skiplist.h src/list.h \
src/utf8.h src/module.h src/prolog.h src/query.h src/parser.h \
src/builtins.h
src/bif_maps.o: src/bif_maps.c src/threads.h src/heap.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/prolog.h src/query.h src/parser.h src/builtins.h
src/bif_posix.o: src/bif_posix.c src/threads.h src/trealla.h src/internal.h src/cdebug.h \
src/stringbuf.h src/imath/imath.h src/imath/imrat.h src/imath/imath.h \
src/skiplist.h src/list.h src/utf8.h src/heap.h \
src/prolog.h src/query.h src/parser.h src/builtins.h
src/bif_predicates.o: src/bif_predicates.c src/threads.h src/base64.h src/heap.h \
src/internal.h src/trealla.h src/cdebug.h src/stringbuf.h \
src/imath/imath.h src/imath/imrat.h src/imath/imath.h \
src/skiplist.h src/list.h src/utf8.h src/history.h src/library.h \
src/module.h src/parser.h src/prolog.h src/query.h src/builtins.h
src/bif_sort.o: src/bif_sort.c src/sort_r.h src/threads.h src/base64.h src/heap.h \
src/internal.h src/trealla.h src/cdebug.h src/stringbuf.h \
src/imath/imath.h src/imath/imrat.h src/imath/imath.h \
src/skiplist.h src/list.h src/utf8.h src/history.h src/library.h \
src/module.h src/parser.h src/prolog.h src/query.h src/builtins.h
src/bif_sregex.o: src/bif_sregex.c src/threads.h src/history.h src/trealla.h src/prolog.h \
src/internal.h src/cdebug.h src/stringbuf.h src/imath/imath.h \
src/imath/imrat.h src/imath/imath.h src/sre/re.h src/skiplist.h src/list.h \
src/utf8.h src/query.h src/parser.h src/builtins.h
src/bif_streams.o: src/bif_streams.c src/threads.h src/heap.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/module.h src/network.h src/parser.h src/prolog.h src/query.h \
src/builtins.h
src/bif_tasks.o: src/bif_tasks.c src/base64.h src/threads.h src/heap.h src/internal.h \
src/trealla.h src/cdebug.h src/stringbuf.h src/imath/imath.h \
src/imath/imrat.h src/imath/imath.h src/skiplist.h src/list.h \
src/utf8.h src/history.h src/library.h src/module.h src/parser.h \
src/prolog.h src/query.h src/builtins.h
src/bif_threads.o: src/bif_threads.c src/threads.h src/heap.h src/internal.h \
src/trealla.h src/cdebug.h src/stringbuf.h src/imath/imath.h \
src/imath/imrat.h src/imath/imath.h src/skiplist.h src/list.h \
src/utf8.h src/history.h src/library.h src/module.h src/parser.h \
src/prolog.h src/query.h src/builtins.h
src/heap.o: src/heap.c src/heap.h src/threads.h src/internal.h src/trealla.h src/cdebug.h \
src/stringbuf.h src/imath/imath.h src/imath/imrat.h src/imath/imath.h \
src/skiplist.h src/list.h src/utf8.h src/prolog.h \
src/query.h src/parser.h src/builtins.h
src/history.o: src/history.c src/internal.h src/trealla.h src/cdebug.h \
src/stringbuf.h src/imath/imath.h src/imath/imrat.h src/imath/imath.h \
src/skiplist.h src/list.h src/utf8.h src/history.h \
src/prolog.h
src/library.o: src/library.c src/library.h
src/list.o: src/list.c src/list.h
src/module.o: src/module.c src/threads.h src/module.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/parser.h src/history.h src/library.h src/prolog.h src/query.h \
src/builtins.h
src/network.o: src/network.c src/threads.h src/history.h src/trealla.h src/network.h \
src/internal.h src/cdebug.h src/stringbuf.h src/imath/imath.h \
src/imath/imrat.h src/imath/imath.h src/skiplist.h src/list.h \
src/utf8.h src/query.h src/parser.h src/builtins.h
src/parser.o: src/parser.c src/threads.h src/heap.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/history.h src/library.h src/module.h src/parser.h src/prolog.h \
src/query.h src/builtins.h
src/print.o: src/print.c src/threads.h src/heap.h src/internal.h src/trealla.h src/cdebug.h \
src/stringbuf.h src/imath/imath.h src/imath/imrat.h src/imath/imath.h \
src/skiplist.h src/list.h src/utf8.h src/module.h \
src/network.h src/parser.h src/query.h src/builtins.h
src/prolog.o: src/prolog.c src/threads.h src/library.h src/module.h src/internal.h \
src/trealla.h src/cdebug.h src/stringbuf.h src/imath/imath.h \
src/imath/imrat.h src/imath/imath.h src/skiplist.h src/list.h \
src/utf8.h src/parser.h src/prolog.h src/query.h src/builtins.h
src/query.o: src/query.c src/threads.h src/heap.h src/internal.h src/trealla.h src/cdebug.h \
src/stringbuf.h src/imath/imath.h src/imath/imrat.h src/imath/imath.h \
src/skiplist.h src/list.h src/utf8.h src/module.h \
src/network.h src/parser.h src/prolog.h src/query.h src/builtins.h
src/skiplist.o: src/skiplist.c src/threads.h src/skiplist.h src/list.h
src/terms.o: src/terms.c src/threads.h src/heap.h src/internal.h src/trealla.h src/cdebug.h \
src/stringbuf.h src/imath/imath.h src/imath/imrat.h src/imath/imath.h \
src/skiplist.h src/list.h src/utf8.h src/query.h \
src/parser.h src/builtins.h
src/toplevel.o: src/toplevel.c src/threads.h src/heap.h src/internal.h src/trealla.h \
src/cdebug.h src/stringbuf.h src/imath/imath.h src/imath/imrat.h \
src/imath/imath.h src/skiplist.h src/list.h src/utf8.h \
src/history.h src/module.h src/prolog.h src/query.h src/parser.h \
src/builtins.h
src/unify.o: src/unify.c src/threads.h src/heap.h src/internal.h src/trealla.h src/cdebug.h \
src/stringbuf.h src/imath/imath.h src/imath/imrat.h src/imath/imath.h \
src/skiplist.h src/list.h src/utf8.h src/query.h \
src/parser.h src/builtins.h
src/utf8.o: src/utf8.c src/utf8.h