aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 9e0fc15d2e7827a5dda7c7e14f99412f37498f28 (plain) (blame)
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
# slibc — Yet another C library
# Copyright © 2015  Mattias Andrée (maandree@member.fsf.org)
# 
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.




# Flags required at compilation of a libc, specifying that unhosted C is used.
CCFLAGS_UNHOSTED = -nostdinc -ffreestanding

# Preprocessor flags defined by slibc that are required to build the slibc.
CCFLAGS_SLIBC_DEFS = -D_SLIBC_SOURCE=1 -D_GNU_SOURCE=1 -D_BSD_SOURCE=1 -D_SLIBC_SUPPRESS_WARNINGS=1 \
                     -D_POSIX_C_SOURCE=999999L -D_XOPEN_SOURCE=9999

# Flag that specifies which C dialect the library is written.
CCFLAGS_CSTD = -std=gnu99

# Flags that specify where the system header files (that would in this case
# be this library's header files) are located.
CCFLAGS_INCLUDES = -Iinclude

# Optimisation flags.
CCFLAGS_OPTIIMISE = -Og -g

# Warning flags.
CCFLAGS_WARNINGS = -Wall -Wextra -Wdouble-promotion -Wno-format -Winit-self -Wmissing-include-dirs \
                   -Wtrampolines -Wfloat-equal -Wshadow -Wmissing-prototypes -Wmissing-declarations \
                   -Wredundant-decls -Wnested-externs -Winline -Wno-variadic-macros -Wsign-conversion \
                   -Wswitch-default -Wconversion -Wsync-nand -Wunsafe-loop-optimizations -Wcast-align \
                   -Wstrict-overflow -Wdeclaration-after-statement -Wundef -Wbad-function-cast \
                   -Wcast-qual -Wwrite-strings -Wlogical-op -Waggregate-return -Wstrict-prototypes \
                   -Wold-style-definition -Wpacked -Wvector-operation-performance \
                   -Wunsuffixed-float-constants -Wsuggest-attribute=const -Wsuggest-attribute=noreturn \
                   -Wsuggest-attribute=pure -Wsuggest-attribute=format -Wnormalized=nfkc
# -pedantic is excluded.
# -Wno-format is temporarily substituted for -Wformat=1


# All flags used required when compiling the library.
CCFLAGS_COMMON = $(CCFLAGS_UNHOSTED) $(CCFLAGS_SLIBC_DEFS) $(CCFLAGS_CSTD) $(CCFLAGS_INCLUDES) \
                 $(CCFLAGS_OPTIIMISE) $(CCFLAGS_WARNINGS)
CCFLAGS_COMMON += $(CPPFLAGS) $(CFLAGS)
CCFLAGS_STATIC = $(CCFLAGS_COMMON)
CCFLAGS_SHARED = $(CCFLAGS_COMMON) -fPIC -DSHARED

# Flags required when genering header file dependency list.
MMFLAGS = $(CCFLAGS_COMMON) -Igen -MG


SHE = '\#'

# Object files to build.
OBJECTS = $(shell find src | grep '\.c$$' | grep -v $(SHE) | sed -e 's:^src/:obj/:' -e 's:\.c$$:\.o:')

# All header files.
HEADERS = $(shell find . | grep '\.h$$' | grep -v $(SHE) | sed -e 's:^\./::')

# All code files.
SOURCES = $(shell find src | grep '\.c$$' | grep -v $(SHE))

# Generated headers files.
GENERATED = include/bits/intconf.h



# You may add config.mk to the topmost directory
# to change any configurations above.
-include config.mk

# The default rule.
.PHONY: default
default: all

# Include list of file dependencies for object files.
include obj/deps.mk




# Build everything.
.PHONY: all
all: $(OBJECTS)


# Build object file.
obj/%.o: $(GENERATED)
	@mkdir -p $$(dirname $@)
	$(CC) -c -o $@ src/$*.c $(CCFLAGS_SHARED)

# Preprocess header files.
include/%.h: gen/%.h bin/gen/%
	@mkdir -p $$(dirname $@)
	gpp -s // < $< > $@

bin/gen/%: obj/gen/%.o
	@mkdir -p $$(dirname $@)
	$(CC) $(CCFLAGS_WARNINGS) -std=c99 -o $@ $^

obj/gen/%.o: gen/%.c
	@mkdir -p $$(dirname $@)
	$(CC) -c -o $@ $<



# Generate list of file dependencies for object files.
obj/deps.mk: Makefile $(HEADERS) $(SOURCES) $(GENERATED)
	@mkdir -p obj
	find src | grep '\.c$$' | xargs $(CC) -MM $(MMFLAGS) > $@
	sed -i 's#^[^ :]*\.o: src\([^ ]*\)/[^ /]*\.c#obj\1/&#' $@
	sed -i 's# gen/\([^ ]*\.h\)# \1#g' $@



# Clean generated files.
.PHONY: clean
clean:
	-rm -rf obj bin
	-rm -f include/bits/intconf.h

# Remove all files that are not part of the source.
.PHONY: distclean
distclean: clean
	-rm -f config.mk