annotate Makefile.gen @ 426:56874ab723d3

Fix build for older GCC versions.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 31 May 2016 16:16:04 +0300
parents ec109cbaddfb
children 0a2f32b8a26e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
426
56874ab723d3 Fix build for older GCC versions.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
1 CFLAGS += -W -Wall -Wextra -D_XOPEN_SOURCE=500 -I./
56874ab723d3 Fix build for older GCC versions.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
2 #CFLAGS += -std=c11 -pedantic
406
30432a52026a Adjust build flags.
Matti Hamalainen <ccr@tnsp.org>
parents: 382
diff changeset
3 CFLAGS += -g
254
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 CFLAGS += -O2
426
56874ab723d3 Fix build for older GCC versions.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
5 CFLAGS += -DTH_USE_INTERNAL_SPRINTF=1
406
30432a52026a Adjust build flags.
Matti Hamalainen <ccr@tnsp.org>
parents: 382
diff changeset
6 CFLAGS += -DTH_PRINTF_DEBUG=1
426
56874ab723d3 Fix build for older GCC versions.
Matti Hamalainen <ccr@tnsp.org>
parents: 419
diff changeset
7
406
30432a52026a Adjust build flags.
Matti Hamalainen <ccr@tnsp.org>
parents: 382
diff changeset
8 THLIBS = ./
254
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 #
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 # Objects
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 #
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13 THLIBS_A=$(OBJPATH)thlibs.a
273
7bea1d5ab944 Build all modules.
Matti Hamalainen <ccr@tnsp.org>
parents: 254
diff changeset
14 THLIBS_OBJ=th_util.o th_config.o th_string.o th_ioctx.o \
7bea1d5ab944 Build all modules.
Matti Hamalainen <ccr@tnsp.org>
parents: 254
diff changeset
15 th_args.o th_crypto.o th_datastruct.o th_network.o
7bea1d5ab944 Build all modules.
Matti Hamalainen <ccr@tnsp.org>
parents: 254
diff changeset
16
254
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18 TESTS_OBJ=tests.o
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19 TESTS_BIN=$(BINPATH)tests$(EXEEXT)
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
21 TARGETS += $(TESTS_BIN)
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
22
302
3f05f6fb5dfd Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 294
diff changeset
23 $(TESTS_BIN): $(addprefix $(OBJPATH),$(TESTS_OBJ)) $(THLIBS_A)
418
3c1bd6c55e00 Make build process less noisy.
Matti Hamalainen <ccr@tnsp.org>
parents: 417
diff changeset
24 @echo " LINK $@"
3c1bd6c55e00 Make build process less noisy.
Matti Hamalainen <ccr@tnsp.org>
parents: 417
diff changeset
25 @$(CC) $(CFLAGS) -o $@ $+ $(LDFLAGS)
254
3d1e2af4e4e6 Start of a very simplistic unit test suite. Initially handling just printf()
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
26
292
54032f17c7e5 Add 'make check' target.
Matti Hamalainen <ccr@tnsp.org>
parents: 273
diff changeset
27 check: $(TESTS_BIN)
54032f17c7e5 Add 'make check' target.
Matti Hamalainen <ccr@tnsp.org>
parents: 273
diff changeset
28 $(TESTS_BIN) -v
54032f17c7e5 Add 'make check' target.
Matti Hamalainen <ccr@tnsp.org>
parents: 273
diff changeset
29
419
ec109cbaddfb Split some build stuff into Makefile.inc
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
30 include $(THLIBS)/Makefile.inc