annotate Makefile.gen @ 704:b070638c5c60

Fix build.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 29 Feb 2020 12:22:30 +0200
parents f1df1cf69a38
children cc4478e5a8c3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
665
23d16d9cdf96 Work on the build system, split generic UNIX things into Makefile.unix
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1 ###
23d16d9cdf96 Work on the build system, split generic UNIX things into Makefile.unix
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
2 ### Main makefile
23d16d9cdf96 Work on the build system, split generic UNIX things into Makefile.unix
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
3 ###
679
ec7e61450087 TH_NO_DEFAULTS is not used anymore.
Matti Hamalainen <ccr@tnsp.org>
parents: 674
diff changeset
4 CFLAGS += -g -W -Wall -Wextra -I.
263
8c983c3b93eb CFLAGS changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
5 CFLAGS += -O2
665
23d16d9cdf96 Work on the build system, split generic UNIX things into Makefile.unix
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
6 CFLAGS += -std=c11 -pedantic -D_XOPEN_SOURCE=500
383
6d3ce7f28b65 Use a Makefile setting for th-libs location.
Matti Hamalainen <ccr@tnsp.org>
parents: 381
diff changeset
7 THLIBS=th-libs/
0
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8
626
904c359b1ced Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 623
diff changeset
9
0
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 #
213
78f47ae47c2a Fix Windows build.
Matti Hamalainen <ccr@tnsp.org>
parents: 199
diff changeset
11 # Version strings
78f47ae47c2a Fix Windows build.
Matti Hamalainen <ccr@tnsp.org>
parents: 199
diff changeset
12 #
78f47ae47c2a Fix Windows build.
Matti Hamalainen <ccr@tnsp.org>
parents: 199
diff changeset
13 NN_VERSION := $(shell cat VERSION)
78f47ae47c2a Fix Windows build.
Matti Hamalainen <ccr@tnsp.org>
parents: 199
diff changeset
14 comma:= ,
78f47ae47c2a Fix Windows build.
Matti Hamalainen <ccr@tnsp.org>
parents: 199
diff changeset
15 NN_VERSION_COM := $(subst .,$(comma),$(NN_VERSION))
465
c3b3b6d89084 Simplify buildsystem a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 413
diff changeset
16 CFLAGS += -DNN_VERSION=\"$(NN_VERSION)\"
213
78f47ae47c2a Fix Windows build.
Matti Hamalainen <ccr@tnsp.org>
parents: 199
diff changeset
17
78f47ae47c2a Fix Windows build.
Matti Hamalainen <ccr@tnsp.org>
parents: 199
diff changeset
18 #
0
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19 # Objects
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20 #
384
40b95d677f68 Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 383
diff changeset
21 THLIBS_A=$(OBJPATH)thlibs.a
669
32c13602c091 Some functions used were factored into new th_datastruct module in th-libs,
Matti Hamalainen <ccr@tnsp.org>
parents: 665
diff changeset
22 THLIBS_OBJ=th_util.o th_string.o th_args.o th_ioctx.o th_file.o th_config.o th_network.o th_datastruct.o
465
c3b3b6d89084 Simplify buildsystem a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 413
diff changeset
23
623
118276b60667 More work towards using th-libs th_network module.
Matti Hamalainen <ccr@tnsp.org>
parents: 622
diff changeset
24 NNCHAT_OBJ=main.o util.o ui.o
695
f1df1cf69a38 Rename EXEEXT to BINEXT in the build system, as per changes in th-libs build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 680
diff changeset
25 NNCHAT_BIN=$(BINPATH)nnchat$(BINEXT)
0
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
26
665
23d16d9cdf96 Work on the build system, split generic UNIX things into Makefile.unix
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
27 TARGETS += $(NNCHAT_BIN)
0
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
28
671
dd3083a3383d Use the makefile.inc helper from th-libs for generic targets.
Matti Hamalainen <ccr@tnsp.org>
parents: 669
diff changeset
29 include $(THLIBS)/Makefile.inc
0
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
30
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
31 #
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
32 # Target rules
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
33 #
413
14b685cdbd2c Rename files.
Matti Hamalainen <ccr@tnsp.org>
parents: 412
diff changeset
34 main.c: VERSION
384
40b95d677f68 Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 383
diff changeset
35
465
c3b3b6d89084 Simplify buildsystem a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 413
diff changeset
36 $(NNCHAT_BIN): $(addprefix $(OBJPATH),$(NNCHAT_OBJ)) $(THLIBS_A) $(EXTRAOBJS)
704
b070638c5c60 Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 695
diff changeset
37 $(LINK_C_BIN)
680
7d4730232ee3 Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 679
diff changeset
38
0
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
39
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40 #
647
ff94100cfc7c Commonize README building.
Matti Hamalainen <ccr@tnsp.org>
parents: 632
diff changeset
41 # Documentation
ff94100cfc7c Commonize README building.
Matti Hamalainen <ccr@tnsp.org>
parents: 632
diff changeset
42 #
ff94100cfc7c Commonize README building.
Matti Hamalainen <ccr@tnsp.org>
parents: 632
diff changeset
43 $(DOC):
674
650e7a5c74c5 Add homepage and adjust Makefiles.
Matti Hamalainen <ccr@tnsp.org>
parents: 671
diff changeset
44 @cat doc/index.html | tr '\n' '§' | sed "s/<.-- BEGIN -->.*<.-- END -->//g;s/<script.*<\/script>//g" | tr '§' '\n' > "$@.tmp"
647
ff94100cfc7c Commonize README building.
Matti Hamalainen <ccr@tnsp.org>
parents: 632
diff changeset
45 @links -dump "$@.tmp" > $@
ff94100cfc7c Commonize README building.
Matti Hamalainen <ccr@tnsp.org>
parents: 632
diff changeset
46