aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: c5c18618d5b727eec95c63a0fe77c8d648eb9fd9 (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
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
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.  This file is offered as-is,
# without any warranty.


# The package path prefix, if you want to install to another root, set DESTDIR to that root.
PREFIX ?= /usr
# The library path excluding prefix.
LIB ?= /lib
# The library header path excluding prefix.
INCLUDE ?= /include
# The resource path excluding prefix.
DATA ?= /share
# The library path including prefix.
LIBDIR ?= $(PREFIX)$(LIB)
# The library header including prefix.
INCLUDEDIR ?= $(PREFIX)$(INCLUDE)
# The resource path including prefix.
DATADIR ?= $(PREFIX)$(DATA)
# The generic documentation path including prefix.
DOCDIR ?= $(DATADIR)/doc
# The info manual documentation path including prefix.
INFODIR ?= $(DATADIR)/info
# The license base path including prefix.
LICENSEDIR ?= $(DATADIR)/licenses

# The name of the package as it should be installed.
PKGNAME ?= libgamma

# General-preprocess command. (https://github.com/maandree/gpp)
GPP ?= gpp

# C compiler, GNU C Compiler by default
CC ?= gcc
CC_BASE ?= $(shell echo $(CC) | cut -d ' ' -f 1)


# Enabled warnings.
WARN = -Wall -Wextra -pedantic -Wformat=2 -Winit-self -Wmissing-include-dirs   \
       -Wfloat-equal -Wshadow -Wmissing-prototypes -Wmissing-declarations      \
       -Wredundant-decls -Wnested-externs -Winline -Wno-variadic-macros        \
       -Wswitch-default -Wconversion -Wcast-align -Wstrict-overflow            \
       -Wdeclaration-after-statement -Wundef -Wcast-qual -Wbad-function-cast   \
       -Wwrite-strings -Waggregate-return -Wpacked -Wstrict-prototypes         \
       -Wold-style-definition

ifeq ($(CC_BASE),gcc)
WARN += -Wdouble-promotion -Wtrampolines -Wsign-conversion -Wsync-nand  \
        -Wlogical-op -Wvector-operation-performance                     \
        -Wunsuffixed-float-constants -Wsuggest-attribute=const          \
        -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure           \
        -Wsuggest-attribute=format -Wnormalized=nfkc                    \
        -Wunsafe-loop-optimizations
endif


# The C standard used in the code.
STD = c99

# Library linking flags for the linker.
LIBS_LD =
# Library linking flags for the C compiler.
LIBS_C =

# Object files for the library.
LIBOBJ = libgamma-facade libgamma-method libgamma-error gamma-helper edid

# Header files for the library are parsed for the info manual.
HEADERS_INFO = libgamma-error libgamma-facade libgamma-method

# Header files for the library, as installed.
HEADERS = libgamma libgamma-config $(HEADERS_INFO)

# Object files for the test.
TESTOBJ = test methods errors

# The version of the library.
LIB_MAJOR = 0
LIB_MINOR = 1
LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR)

# Change by .config.mk to reflect what is used in the OS, linux uses so: libgamma.so
SO = so

# These three below are changed by .config.mk if required
SHARED = -shared
LDSO = -Wl,-soname,libgamma.$(SO).$(LIB_MAJOR)
PIC = -fPIC

# Include configurations from `./configure`.
include .config.mk

# Optimisation level (and debug flags.)
ifeq ($(DEBUG),y)
ifeq ($(CC_BASE),gcc)
OPTIMISE = -Og -g3
else
OPTIMISE = -g
endif
else
ifeq ($(CC_BASE),gcc)
OPTIMISE = -Ofast
else
OPTIMISE = -O
endif
endif

# C compiler debug flags.
DEBUG_FLAGS =
ifeq ($(DEBUG),y)
DEBUG_FLAGS += -D'DEBUG'
endif

# Options for the C compiler for the test.
TEST_FLAGS = $(OPTIMISE) $(WARN) -std=$(STD) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)  \
             -fstrict-aliasing -fstrict-overflow -fno-builtin

ifeq ($(CC_BASE),gcc)
TEST_FLAGS += -fstack-usage -ftree-vrp -fipa-pure-const -funsafe-loop-optimizations
endif


# Options for the C compiler for the library.
LIB_FLAGS = $(TEST_FLAGS) $(DEBUG_FLAGS) $(DEFINITIONS) -DLIBGAMMA_CONFIG_H

ifeq ($(CC_BASE),gcc)
TEST_FLAGS += -D__GCC__
LIB_FLAGS += -D__GCC__
endif

ifeq ($(HAVE_INT128),y)
LIB_FLAGS += -DHAVE_INT128
endif



# Build rules.

.PHONY: default
default: lib test info

.PHONY: all
all: lib test doc


.PHONY: lib
lib: bin/libgamma.$(SO).$(LIB_VERSION) bin/libgamma.$(SO).$(LIB_MAJOR) bin/libgamma.$(SO)

bin/libgamma.$(SO).$(LIB_VERSION): $(foreach O,$(LIBOBJ),obj/lib/$(O).o)
	mkdir -p $(shell dirname $@)
	$(CC) $(LIB_FLAGS) $(LIBS_LD) $(SHARED) $(LDSO) -o $@ $^

bin/libgamma.$(SO).$(LIB_MAJOR):
	mkdir -p $(shell dirname $@)
	ln -sf libgamma.$(SO).$(LIB_VERSION) $@

bin/libgamma.$(SO):
	mkdir -p $(shell dirname $@)
	ln -sf libgamma.$(SO).$(LIB_VERSION) $@

obj/lib/%.o: src/lib/%.c src/lib/*.h
	mkdir -p $(shell dirname $@)
	$(CC) $(LIB_FLAGS) $(LIBS_C) $(PIC) -s -c -o $@ $<

obj/lib/%.o: obj/lib/%.c src/lib/*.h
	$(CC) $(LIB_FLAGS) $(LIBS_C) $(PIC) -iquote"$$(dirname "$<" | sed -e 's:^obj:src:')" -c -o $@ $<

obj/%: src/%.gpp src/extract/libgamma-*-extract
	mkdir -p $(shell dirname $@)
	$(GPP) --symbol '$$' --input $< --output $@


.PHONY: test
test: bin/test

bin/test: $(foreach O,$(TESTOBJ),obj/test/$(O).o) bin/libgamma.$(SO).$(LIB_VERSION) bin/libgamma.$(SO)
	mkdir -p $(shell dirname $@)
	$(CC) $(TEST_FLAGS) $(LIBS_LD) -Lbin -lgamma -o $@ $(foreach O,$(TESTOBJ),obj/test/$(O).o)

obj/test/%.o: src/test/%.c src/test/*.h src/lib/libgamma*.h
	mkdir -p $(shell dirname $@)
	$(CC) $(TEST_FLAGS) -Isrc/lib -c -o $@ $<


.PHONY: doc
doc: info pdf dvi ps

obj/libgamma.texinfo: info/libgamma.texinfo $(foreach H,$(HEADERS_INFO),src/lib/$(H).h) \
	              src/extract/libgamma-*-extract info/texise info/behead
	mkdir -p obj
	$(GPP) --symbol '%' --input $< --output $@

obj/%.texinfo: info/%.texinfo
	mkdir -p obj
	cp $< $@

.PHONY: info
info: libgamma.info
%.info: obj/%.texinfo obj/fdl.texinfo
	makeinfo $<

.PHONY: pdf
pdf: libgamma.pdf
%.pdf: obj/%.texinfo obj/fdl.texinfo
	cd obj ; yes X | texi2pdf ../$<
	mv obj/$@ $@

.PHONY: dvi
dvi: libgamma.dvi
%.dvi: obj/%.texinfo obj/fdl.texinfo
	cd obj ; yes X | $(TEXI2DVI) ../$<
	mv obj/$@ $@

.PHONY: ps
ps: libgamma.ps
%.ps: obj/%.texinfo obj/fdl.texinfo
	cd obj ; yes X | texi2pdf --ps ../$<
	mv obj/$@ $@


# Install rules.

.PHONY: install
install: install-base install-info

.PHONY: install
install-all: install-base install-doc

.PHONY: install-base
install-base: install-lib install-include install-copyright


.PHONY: install-lib
install-lib: bin/libgamma.$(SO).$(LIB_VERSION)
	install -dm755 -- "$(DESTDIR)$(LIBDIR)"
	install -m755 $< -- "$(DESTDIR)$(LIBDIR)/libgamma.$(SO).$(LIB_VERSION)"
	ln -sf libgamma.$(SO).$(LIB_VERSION) -- "$(DESTDIR)$(LIBDIR)/libgamma.$(SO).$(LIB_MAJOR)"
	ln -sf libgamma.$(SO).$(LIB_VERSION) -- "$(DESTDIR)$(LIBDIR)/libgamma.$(SO)"

.PHONY: install-include
install-include:
	install -dm755 -- "$(DESTDIR)$(INCLUDEDIR)"
	install -m644 $(foreach H,$(HEADERS),src/lib/$(H).h) -- "$(DESTDIR)$(INCLUDEDIR)"


.PHONY: install-copyright
install-copyright: install-copying install-license

.PHONY: install-copying
install-copying:
	install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
	install -m644 COPYING -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/COPYING"

.PHONY: install-license
install-license:
	install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
	install -m644 LICENSE -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE"


.PHONY: install-doc
install-doc: install-info install-pdf install-ps install-dvi

.PHONY: install-info
install-info: libgamma.info
	install -dm755 -- "$(DESTDIR)$(INFODIR)"
	install -m644 $< -- "$(DESTDIR)$(INFODIR)/$(PKGNAME).info"

.PHONY: install-pdf
install-pdf: libgamma.pdf
	install -dm755 -- "$(DESTDIR)$(DOCDIR)"
	install -m644 $< -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).pdf"

.PHONY: install-ps
install-ps: libgamma.ps
	install -dm755 -- "$(DESTDIR)$(DOCDIR)"
	install -m644 $< -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).ps"

.PHONY: install-dvi
install-dvi: libgamma.dvi
	install -dm755 -- "$(DESTDIR)$(DOCDIR)"
	install -m644 $< -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).dvi"


# Uninstall rules.

.PHONY: uninstall
uninstall:
	-rm -- "$(DESTDIR)$(LIBDIR)/libgamma.$(SO).$(LIB_VERSION)"
	-rm -- "$(DESTDIR)$(LIBDIR)/libgamma.$(SO).$(LIB_MAJOR)"
	-rm -- "$(DESTDIR)$(LIBDIR)/libgamma.$(SO)"
	-rm -- $(foreach H,$(HEADERS),"$(DESTDIR)$(INCLUDEDIR)/$(H).h")
	-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/COPYING"
	-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE"
	-rmdir -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
	-rm -- "$(DESTDIR)$(INFODIR)/$(PKGNAME).info"
	-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).pdf"
	-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).ps"
	-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).dvi"


# Clean rules.

.PHONY: clean
clean:
	-rm -rf obj bin libgamma.{info,pdf,ps,dvi}

.PHONY: distclean
distclean: clean
	-rm -f .config.mk src/lib/libgamma-config.h