gcrypt: Fix a few format-signedness issues.
[paraslash.git] / Makefile.real
1 # Implicit rules are implemented in make as suffix rules. The following rule
2 # empties the suffix list to disable the predefined implicit rules. This
3 # increases performance and avoids hard-to-debug behaviour.
4 .SUFFIXES:
5 MAKEFLAGS += -Rr
6 ifeq ("$(origin CC)", "default")
7         CC := cc
8 endif
9
10 vardir := /var/paraslash
11 mandir := $(datarootdir)/man/man1
12 STRIP := $(CROSS_COMPILE)strip
13 HOSTCC ?= cc
14 MKDIR_P := mkdir -p
15 prefixed_executables := $(addprefix para_, $(executables))
16
17 build_date := $(shell date)
18 uname_s := $(shell uname -s 2>/dev/null || echo "UNKNOWN_OS")
19 uname_rs := $(shell uname -rs)
20 cc_version := $(shell $(CC) --version | head -n 1)
21 GIT_VERSION := $(shell ./GIT-VERSION-GEN git-version.h)
22 COPYRIGHT_YEAR := 2016
23
24 ifeq ("$(origin O)", "command line")
25         build_dir := $(O)
26 else
27         build_dir := build
28 endif
29 ggo_dir := $(build_dir)/ggo
30 object_dir := $(build_dir)/objects
31 dep_dir := $(build_dir)/deps
32 man_dir := $(build_dir)/man/man1
33 cmdline_dir := $(build_dir)/cmdline
34 cmdlist_dir := $(build_dir)/cmdlist
35 m4depdir := $(build_dir)/m4deps
36 help2man_dir := $(build_dir)/help2man
37 hostbin_dir := $(build_dir)/host/bin
38 m4_ggo_dir := m4/gengetopt
39 test_dir := t
40
41 # sort removes duplicate words, which is all we need here
42 all_objs := $(sort $(recv_objs) $(filter_objs) $(client_objs) $(gui_objs) \
43         $(audiod_objs) $(audioc_objs) $(fade_objs) $(server_objs) \
44         $(write_objs) $(afh_objs) $(play_objs))
45 deps := $(addprefix $(dep_dir)/, $(filter-out %.cmdline.d, $(all_objs:.o=.d)))
46 m4_deps := $(addprefix $(m4depdir)/, $(addsuffix .m4d, $(executables)))
47
48 # now prefix all objects with object dir
49 recv_objs := $(addprefix $(object_dir)/, $(recv_objs))
50 filter_objs := $(addprefix $(object_dir)/, $(filter_objs))
51 client_objs := $(addprefix $(object_dir)/, $(client_objs))
52 gui_objs := $(addprefix $(object_dir)/, $(gui_objs))
53 audiod_objs := $(addprefix $(object_dir)/, $(audiod_objs))
54 audioc_objs := $(addprefix $(object_dir)/, $(audioc_objs))
55 fade_objs := $(addprefix $(object_dir)/, $(fade_objs))
56 server_objs := $(addprefix $(object_dir)/, $(server_objs))
57 write_objs := $(addprefix $(object_dir)/, $(write_objs))
58 afh_objs := $(addprefix $(object_dir)/, $(afh_objs))
59 play_objs := $(addprefix $(object_dir)/, $(play_objs))
60
61 man_pages := $(patsubst %, $(man_dir)/%.1, $(prefixed_executables))
62
63 autocrap := config.h.in configure
64 tarball_pfx := $(PACKAGE_TARNAME)-$(GIT_VERSION)
65 tarball_delete := $(addprefix $(tarball_pfx)/, web .gitignore)
66 tarball := $(tarball_pfx).tar.bz2
67
68 .PHONY: all clean clean2 distclean maintainer-clean install man tarball
69 all: $(prefixed_executables) $(man_pages)
70 man: $(man_pages)
71 tarball: $(tarball)
72
73 include $(m4_ggo_dir)/makefile
74 include $(test_dir)/makefile.test
75 ifeq ($(findstring clean, $(MAKECMDGOALS)),)
76 -include $(deps)
77 -include $(m4_deps)
78 endif
79
80 $(object_dir) $(man_dir) $(ggo_dir) $(cmdline_dir) $(dep_dir) $(m4depdir) \
81                 $(help2man_dir) $(hostbin_dir) $(cmdlist_dir):
82         $(Q) $(MKDIR_P) $@
83
84 # When in doubt, use brute force (Ken Thompson)
85 TOUPPER = \
86 $(subst a,A,$(subst b,B,$(subst c,C,$(subst d,D,$(subst e,E,\
87 $(subst f,F,$(subst g,G,$(subst h,H,$(subst i,I,$(subst j,J,\
88 $(subst k,K,$(subst l,L,$(subst m,M,$(subst n,N,$(subst o,O,\
89 $(subst p,P,$(subst q,Q,$(subst r,R,$(subst s,S,$(subst t,T,\
90 $(subst u,U,$(subst v,V,$(subst w,W,$(subst x,X,$(subst y,Y,\
91 $(subst z,Z,$1))))))))))))))))))))))))))
92
93 CPPFLAGS += -DBINDIR='"$(bindir)"'
94 CPPFLAGS += -DCOPYRIGHT_YEAR='"$(COPYRIGHT_YEAR)"'
95 CPPFLAGS += -DBUILD_DATE='"$(build_date)"'
96 CPPFLAGS += -DUNAME_RS='"$(uname_rs)"'
97 CPPFLAGS += -DCC_VERSION='"$(cc_version)"'
98 CPPFLAGS += -DMAIN_INPUT_FILE_IS_$(*F)
99 CPPFLAGS += -I/usr/local/include
100 CPPFLAGS += -I$(cmdline_dir)
101 CPPFLAGS += -I$(cmdlist_dir)
102
103 CFLAGS += -Os
104 CFLAGS += -Wuninitialized
105 CFLAGS += -Wchar-subscripts
106 CFLAGS += -Werror-implicit-function-declaration
107 CFLAGS += -Wmissing-noreturn
108 CFLAGS += -Wbad-function-cast
109 CFLAGS += -fno-strict-aliasing
110
111 STRICT_CFLAGS = $(CFLAGS)
112 STRICT_CFLAGS += -g -Wundef -W
113 STRICT_CFLAGS += -Wredundant-decls
114 STRICT_CFLAGS += -Wno-sign-compare -Wno-unknown-pragmas
115 STRICT_CFLAGS += -Wformat -Wformat-security
116 STRICT_CFLAGS += -Wmissing-format-attribute
117 STRICT_CFLAGS += -Wdeclaration-after-statement
118
119 LDFLAGS += $(clock_gettime_ldflags)
120
121 ifeq ($(uname_s),Linux)
122         # these cause warnings on *BSD
123         CPPFLAGS += -Wunused-macros
124         STRICT_CFLAGS += -fdata-sections -ffunction-sections
125         STRICT_CFLAGS += -Wstrict-prototypes
126         STRICT_CFLAGS += -Wshadow
127         STRICT_CFLAGS += -Wunused -Wall
128         LDFLAGS += -Wl,--gc-sections
129 endif
130
131 cc-option = $(shell \
132         $(CC) $(1) -Werror -c -x c /dev/null -o /dev/null > /dev/null 2>&1 \
133         && echo "$(1)" \
134 )
135
136 STRICT_CFLAGS += $(call cc-option, -Wformat-signedness)
137
138 # To put more focus on warnings, be less verbose as default
139 # Use 'make V=1' to see the full commands
140 ifeq ("$(origin V)", "command line")
141         Q :=
142 else
143         Q := @
144 endif
145
146 $(cmdlist_dir)/%.command_list.h: %.cmd %.c | $(cmdlist_dir)
147         @[ -z "$(Q)" ] || echo 'GEN $@'
148         $(Q) ./command_util.bash h < $< >$@
149 $(cmdlist_dir)/%.command_list.man: %.cmd %.c | $(cmdlist_dir)
150         @[ -z "$(Q)" ] || echo 'GEN $@'
151         $(Q) ./command_util.bash man < $< > $@
152 $(cmdlist_dir)/%.completion.h: %.cmd | $(cmdlist_dir)
153         @[ -z "$(Q)" ] || echo 'GEN $@'
154         $(Q) ./command_util.bash compl $(strip $(call TOUPPER,$(*F)))_COMPLETERS \
155                 $(strip $(call TOUPPER,$(*F)))_COMMANDS < $< > $@
156
157 $(cmdlist_dir)/server.command_list.h \
158 $(cmdlist_dir)/server.command_list.man \
159 $(cmdlist_dir)/server.completion.h \
160 : command.c
161
162 $(cmdlist_dir)/afs.command_list.h \
163 $(cmdlist_dir)/afs.command_list.man \
164 $(cmdlist_dir)/afs.completion.h \
165 : afs.c aft.c attribute.c
166
167 $(cmdlist_dir)/audiod.command_list.h \
168 $(cmdlist_dir)/audiod.command_list.man \
169 $(cmdlist_dir)/audiod.completion.h \
170 : audiod_command.c
171
172 server_command_lists := $(cmdlist_dir)/server.command_list.man \
173         $(cmdlist_dir)/afs.command_list.man
174 audiod_command_lists := $(cmdlist_dir)/audiod.command_list.man
175 play_command_lists := $(cmdlist_dir)/play.command_list.man
176
177 $(man_dir)/para_server.1: $(server_command_lists)
178 $(man_dir)/para_audiod.1: $(audiod_command_lists)
179 $(man_dir)/para_play.1: $(play_command_lists)
180
181 $(man_dir)/para_server.1: man_util_command_lists := $(server_command_lists)
182 $(man_dir)/para_audiod.1: man_util_command_lists := $(audiod_command_lists)
183 $(man_dir)/para_play.1: man_util_command_lists := $(play_command_lists)
184
185 $(man_dir)/para_%.1: $(ggo_dir)/%.ggo man_util.bash \
186                 git-version.h | $(man_dir) $(help2man_dir)
187         @[ -z "$(Q)" ] || echo 'MAN $<'
188         $(Q) \
189                 COMMAND_LISTS="$(man_util_command_lists)" \
190                 FILTERS="$(filters)" \
191                 GENGETOPT=$(GENGETOPT) \
192                 GGO_DIR=$(ggo_dir) \
193                 HELP2MAN=$(HELP2MAN) \
194                 HELP2MAN_DIR=$(help2man_dir) \
195                 RECEIVERS="$(receivers)" \
196                 VERSION="$(GIT_VERSION)" \
197                 WRITERS="$(writers)" \
198                 ./man_util.bash $@
199
200 $(hostbin_dir)/error2: error2.c | $(hostbin_dir)
201         @[ -z "$(Q)" ] || echo 'HCC $<'
202         $(Q) $(HOSTCC) -o $@ $<
203 error2.h: $(hostbin_dir)/error2 config.h
204         @[ -z "$(Q)" ] || echo 'ER2 $<'
205         @echo "$(object_executable_matrix)" | $< > $@
206
207 $(object_dir)/%.o: %.c | $(object_dir)
208
209 $(object_dir)/opus%.o $(dep_dir)/opus%.d: CPPFLAGS += $(opus_cppflags)
210 $(object_dir)/gui.o $(object_dir)/gui%.o $(dep_dir)/gui%.d \
211 : CPPFLAGS += $(curses_cppflags)
212 $(object_dir)/spx%.o $(dep_dir)/spx%.d: CPPFLAGS += $(speex_cppflags)
213 $(object_dir)/flac%.o $(dep_dir)/flac%.d: CPPFLAGS += $(flac_cppflags)
214
215 $(object_dir)/mp3_afh.o $(dep_dir)/mp3_afh.d: CPPFLAGS += $(id3tag_cppflags)
216 $(object_dir)/crypt.o $(dep_dir)/crypt.d: CPPFLAGS += $(openssl_cppflags)
217 $(object_dir)/gcrypt.o $(dep_dir)/gcrypt.d: CPPFLAGS += $(gcrypt_cppflags)
218 $(object_dir)/ao_write.o $(dep_dir)/ao_write.d: CPPFLAGS += $(ao_cppflags)
219 $(object_dir)/aac_afh.o $(dep_dir)/aac_afh.d: CPPFLAGS += $(mp4v2_cppflags)
220 $(object_dir)/alsa%.o $(dep_dir)/alsa%.d: CPPFLAGS += $(alsa_cppflags)
221
222 $(object_dir)/interactive.o $(dep_dir)/interactive.d \
223 : CPPFLAGS += $(readline_cppflags)
224
225 $(object_dir)/resample_filter.o $(dep_dir)/resample_filter.d \
226 : CPPFLAGS += $(samplerate_cppflags)
227
228 $(object_dir)/oss_write.o $(dep_dir)/oss_write.d \
229 : CPPFLAGS += $(oss_cppflags)
230
231 $(object_dir)/ao_write.o $(dep_dir)/ao_write.d \
232 : CPPFLAGS += $(ao_cppflags) $(pthread_cppflags)
233
234 $(object_dir)/mp3dec_filter.o $(dep_dir)/mp3dec_filter.d \
235 : CPPFLAGS += $(mad_cppflags)
236
237 $(object_dir)/aacdec_filter.o $(dep_dir)/aacdec_filter.d \
238 $(object_dir)/aac_common.o $(dep_dir)/aac_common.d \
239 $(object_dir)/aac_afh.o $(dep_dir)/aac_afh.d \
240 : CPPFLAGS += $(faad_cppflags)
241
242 $(object_dir)/ogg_afh.o $(dep_dir)/ogg_afh.d \
243 $(object_dir)/oggdec_filter.o $(dep_dir)/oggdec_filter.d \
244 : CPPFLAGS += $(vorbis_cppflags)
245
246 $(object_dir)/spx_common.o $(dep_dir)/spx_common.d \
247 $(object_dir)/spxdec_filter.o $(dep_dir)/spxdec_filter.d \
248 $(object_dir)/spx_afh.o $(dep_dir)/spx_afh.d \
249 $(object_dir)/oggdec_filter.o $(dep_dir)/oggdec_filter.d \
250 $(object_dir)/ogg_afh.o $(dep_dir)/ogg_afh.d \
251 $(object_dir)/ogg_afh_common.o $(dep_dir)/ogg_afh_common.d \
252 $(object_dir)/opus%.o $(dep_dir)/opus%.d \
253 : CPPFLAGS += $(ogg_cppflags)
254
255 $(object_dir)/afs.o $(dep_dir)/afs.d \
256 $(object_dir)/aft.o $(dep_dir)/aft.d \
257 $(object_dir)/attribute.o $(dep_dir)/attribute.d \
258 $(object_dir)/blob.o $(dep_dir)/blob.d  \
259 $(object_dir)/mood.o $(dep_dir)/mood.d \
260 $(object_dir)/playlist.o $(dep_dir)/playlist.d \
261 $(object_dir)/score.o $(dep_dir)/score.d \
262 $(object_dir)/server.o $(dep_dir)/server.d \
263 $(object_dir)/vss.o $(dep_dir)/vss.d \
264 $(object_dir)/command.o $(dep_dir)/command.d \
265 $(object_dir)/http_send.o $(dep_dir)/http_send.d \
266 $(object_dir)/dccp_send.o $(dep_dir)/dccp_send.d \
267 $(object_dir)/udp_send.o $(dep_dir)/udp_send.d \
268 $(object_dir)/send_common.o $(dep_dir)/send_common.d \
269 $(object_dir)/mm.o $(dep_dir)/mm.d \
270 : CPPFLAGS += $(osl_cppflags)
271
272 $(object_dir)/%.cmdline.o: CFLAGS += -Wno-unused-function
273 $(object_dir)/compress_filter.o: CFLAGS += -O3
274
275 $(object_dir)/%.o: %.c | $(object_dir)
276         @[ -z "$(Q)" ] || echo 'CC $<'
277         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(STRICT_CFLAGS) $<
278
279 $(object_dir)/%.cmdline.o: $(cmdline_dir)/%.cmdline.c $(cmdline_dir)/%.cmdline.h | $(object_dir)
280         @[ -z "$(Q)" ] || echo 'CC $<'
281         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $<
282
283 # The compiler outputs dependencies either as foo.h or as some_directory/foo.h,
284 # depending on whether the latter file exists. Since make needs the directory
285 # part we prefix the dependency as appropriate.
286 $(dep_dir)/%.d: %.c error2.h | $(dep_dir)
287         @[ -z "$(Q)" ] || echo 'DEP $<'
288         $(Q) $(CC) $(CPPFLAGS) -MM -MG -MP -MT $@ -MT $(object_dir)/$(*F).o $< \
289                 | sed -e "s@ \([a-zA-Z0-9_]\{1,\}\.cmdline.h\)@ $(cmdline_dir)/\1@g" \
290                 -e "s@ \([a-zA-Z0-9_]\{1,\}\.command_list.h\)@ $(cmdlist_dir)/\1@g" \
291                 -e "s@ \([a-zA-Z0-9_]\{1,\}\.completion.h\)@ $(cmdlist_dir)/\1@g" > $@
292
293 para_recv para_afh para_play para_server: LDFLAGS += $(id3tag_ldflags)
294 para_write para_play para_audiod \
295 : LDFLAGS += $(ao_ldflags) $(pthread_ldflags) $(core_audio_ldflags)
296 para_client para_audioc para_play : LDFLAGS += $(readline_ldflags)
297 para_server: LDFLAGS += $(osl_ldflags)
298 para_gui: LDFLAGS += $(curses_ldflags)
299 para_server \
300 para_client \
301 para_audiod \
302 :LDFLAGS += \
303         $(crypto_ldflags)
304
305 para_audiod \
306 para_filter \
307 para_play \
308 : LDFLAGS += \
309         $(mad_ldflags) \
310         $(faad_ldflags) \
311         $(samplerate_ldflags) \
312         -lm
313
314 para_write \
315 para_play \
316 para_audiod \
317 para_fade \
318 : LDFLAGS += \
319         $(oss_ldflags) \
320         $(alsa_ldflags)
321
322 para_server \
323 para_filter \
324 para_audiod \
325 para_play \
326 para_afh \
327 para_recv \
328 : LDFLAGS += \
329         $(ogg_ldflags) \
330         $(vorbis_ldflags) \
331         $(speex_ldflags) \
332         $(opus_ldflags) \
333         $(faad_ldflags) \
334         $(flac_ldflags)
335
336 para_server \
337 para_play \
338 para_afh \
339 para_recv \
340 : LDFLAGS += \
341         $(mp4v2_ldflags)
342
343 para_afh para_recv para_server para_play: LDFLAGS += $(iconv_ldflags)
344
345 $(foreach exe,$(executables),$(eval para_$(exe): $$($(exe)_objs)))
346 $(prefixed_executables):
347         @[ -z "$(Q)" ] || echo 'LD $@'
348         $(Q) $(CC) $^ -o $@ $(LDFLAGS)
349
350 clean:
351         @[ -z "$(Q)" ] || echo 'CLEAN'
352         $(Q) rm -f para_*
353         $(Q) rm -rf $(object_dir)
354
355 clean2: clean
356         @[ -z "$(Q)" ] || echo 'CLEAN2'
357         $(Q) rm -rf $(build_dir)
358 distclean: clean2 test-clean
359         @[ -z "$(Q)" ] || echo 'DISTCLEAN'
360         $(Q) rm -f Makefile autoscan.log config.status config.log error2.h
361         $(Q) rm -f GPATH GRTAGS GSYMS GTAGS
362
363 maintainer-clean: distclean
364         @[ -z "$(Q)" ] || echo 'MAINTAINER-CLEAN'
365         $(Q) rm -f *.tar.bz2 config.h configure config.h.in
366
367 install: all man
368         $(MKDIR_P) $(bindir) $(mandir)
369         $(INSTALL) -s --strip-program $(STRIP) -m 755 \
370                 $(prefixed_executables) $(bindir)
371         $(INSTALL) -m 644 $(man_pages) $(mandir)
372         $(MKDIR_P) $(vardir) >/dev/null 2>&1 || true # not fatal, so don't complain
373
374 $(tarball):
375         $(Q) rm -rf $(tarball) $(tarball_pfx)
376         $(Q) git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \
377                 | tar --delete $(tarball_delete) > $(tarball_pfx).tar
378         $(Q) $(MKDIR_P) $(tarball_pfx)
379         $(Q) ./GIT-VERSION-GEN > $(tarball_pfx)/VERSION
380         $(Q) cp $(autocrap) $(tarball_pfx)
381         $(Q) tar rf $(tarball_pfx).tar $(tarball_pfx)/*
382         $(Q) bzip2 -9 $(tarball_pfx).tar
383         $(Q) ls -l $(tarball)
384         $(Q) ln -sf $(tarball) paraslash-git.tar.bz2
385         $(Q) rm -rf $(tarball_pfx)