annotate Makefile.gen @ 363:ab53c76f40d5

Add Makefile parameter ASAN to enable address sanitizer build (and disable -O and -flto when doing that.)
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 11 Sep 2020 01:59:35 +0300
parents 969f86b74bff
children f0ad03639a93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
327
b6f88c150573 Use the newly added (in th-libs th_args module) option argument name field.
Matti Hamalainen <ccr@tnsp.org>
parents: 313
diff changeset
1 CFLAGS += -W -Wall -Wextra -std=c99 -pedantic -I./ -D_XOPEN_SOURCE=500
122
9fb96c170bbc Make build process less noisy and also work with parallel make.
Matti Hamalainen <ccr@tnsp.org>
parents: 85
diff changeset
2 CFLAGS += -g
327
b6f88c150573 Use the newly added (in th-libs th_args module) option argument name field.
Matti Hamalainen <ccr@tnsp.org>
parents: 313
diff changeset
3 CFLAGS += -DTH_USE_OPT_ARG=1
122
9fb96c170bbc Make build process less noisy and also work with parallel make.
Matti Hamalainen <ccr@tnsp.org>
parents: 85
diff changeset
4 THLIBS = th-libs/
0
8e7e08bf7b9e Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5
363
ab53c76f40d5 Add Makefile parameter ASAN to enable address sanitizer build (and disable -O and -flto when doing that.)
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
6 ifneq ($(ASAN),)
ab53c76f40d5 Add Makefile parameter ASAN to enable address sanitizer build (and disable -O and -flto when doing that.)
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
7 CFLAGS += -fsanitize=address
ab53c76f40d5 Add Makefile parameter ASAN to enable address sanitizer build (and disable -O and -flto when doing that.)
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
8 LDFLAGS += -lasan
ab53c76f40d5 Add Makefile parameter ASAN to enable address sanitizer build (and disable -O and -flto when doing that.)
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
9 else
ab53c76f40d5 Add Makefile parameter ASAN to enable address sanitizer build (and disable -O and -flto when doing that.)
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
10 CFLAGS += -O2
ab53c76f40d5 Add Makefile parameter ASAN to enable address sanitizer build (and disable -O and -flto when doing that.)
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
11 CFLAGS += -flto
ab53c76f40d5 Add Makefile parameter ASAN to enable address sanitizer build (and disable -O and -flto when doing that.)
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
12 endif
0
8e7e08bf7b9e Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13
275
04917c170c23 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 274
diff changeset
14 ###
04917c170c23 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 274
diff changeset
15 ### Objects and targets
04917c170c23 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 274
diff changeset
16 ###
359
969f86b74bff Add th_ioctx_stdio.o to th-libs objects.
Matti Hamalainen <ccr@tnsp.org>
parents: 346
diff changeset
17 THLIBS_OBJ=th_util.o th_string.o th_file.o th_args.o \
969f86b74bff Add th_ioctx_stdio.o to th-libs objects.
Matti Hamalainen <ccr@tnsp.org>
parents: 346
diff changeset
18 th_crypto.o th_datastruct.o th_ioctx.o \
969f86b74bff Add th_ioctx_stdio.o to th-libs objects.
Matti Hamalainen <ccr@tnsp.org>
parents: 346
diff changeset
19 th_ioctx_stdio.o
0
8e7e08bf7b9e Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20
313
b3d46806787d Move a number of more or less generic helper functions into a separate sidutil.[ch] module.
Matti Hamalainen <ccr@tnsp.org>
parents: 286
diff changeset
21 SIDINFO_OBJ=sidlib.o sidutil.o sidinfo.o
274
a5bc27d26174 Rename EXEEXT to BINEXT in the build system, as per changes in th-libs build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 191
diff changeset
22 SIDINFO_BIN=$(BINPATH)sidinfo$(BINEXT)
0
8e7e08bf7b9e Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23
68
8dda5f225083 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 52
diff changeset
24 TARGETS += $(SIDINFO_BIN)
0
8e7e08bf7b9e Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25
275
04917c170c23 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 274
diff changeset
26
04917c170c23 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 274
diff changeset
27 ###
04917c170c23 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 274
diff changeset
28 ### Rules
04917c170c23 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 274
diff changeset
29 ###
137
18f61c69733d Buildsystem fix.
Matti Hamalainen <ccr@tnsp.org>
parents: 123
diff changeset
30 include $(THLIBS)/Makefile.inc
18f61c69733d Buildsystem fix.
Matti Hamalainen <ccr@tnsp.org>
parents: 123
diff changeset
31
275
04917c170c23 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 274
diff changeset
32
0
8e7e08bf7b9e Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
33 $(SIDINFO_BIN): $(addprefix $(OBJPATH),$(SIDINFO_OBJ)) $(THLIBS_A) $(EXTRAOBJS)
346
5fafd0735b18 Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 327
diff changeset
34 $(LINK_C_BIN)
0
8e7e08bf7b9e Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35