Convert para_client to lopsub.
[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 LOGLEVELS := LL_DEBUG,LL_INFO,LL_NOTICE,LL_WARNING,LL_ERROR,LL_CRIT,LL_EMERG
11 vardir := /var/paraslash
12 mandir := $(datarootdir)/man/man1
13 STRIP := $(CROSS_COMPILE)strip
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 := 2017
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 m4depdir := $(build_dir)/m4deps
35 help2man_dir := $(build_dir)/help2man
36 lls_suite_dir := $(build_dir)/lls
37 lls_m4_dir := m4/lls
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 converted_executables := audioc client
47 unconverted_executables := $(filter-out $(converted_executables), $(executables))
48
49 audioc_objs += audioc.lsg.o
50 audiod_objs += audiod_cmd.lsg.o recv_cmd.lsg.o client.lsg.o
51 server_objs += server_cmd.lsg.o
52 play_objs += play_cmd.lsg.o recv_cmd.lsg.o
53 recv_objs += recv_cmd.lsg.o
54 client_objs += client.lsg.o
55
56 m4_deps := $(addprefix $(m4depdir)/, $(addsuffix .m4d, $(unconverted_executables)))
57 m4_lls_deps := audiod_cmd server_cmd play_cmd recv_cmd $(converted_executables)
58 m4_lls_deps := $(addprefix $(lls_suite_dir)/, $(addsuffix .m4d, $(m4_lls_deps)))
59
60 # now prefix all objects with object dir
61 recv_objs := $(addprefix $(object_dir)/, $(recv_objs))
62 filter_objs := $(addprefix $(object_dir)/, $(filter_objs))
63 client_objs := $(addprefix $(object_dir)/, $(client_objs))
64 gui_objs := $(addprefix $(object_dir)/, $(gui_objs))
65 audiod_objs := $(addprefix $(object_dir)/, $(audiod_objs))
66 audioc_objs := $(addprefix $(object_dir)/, $(audioc_objs))
67 fade_objs := $(addprefix $(object_dir)/, $(fade_objs))
68 server_objs := $(addprefix $(object_dir)/, $(server_objs))
69 write_objs := $(addprefix $(object_dir)/, $(write_objs))
70 afh_objs := $(addprefix $(object_dir)/, $(afh_objs))
71 play_objs := $(addprefix $(object_dir)/, $(play_objs))
72
73 man_pages := $(patsubst %, $(man_dir)/%.1, $(prefixed_executables))
74
75 autocrap := config.h.in configure
76 tarball_pfx := $(PACKAGE_TARNAME)-$(GIT_VERSION)
77 tarball_delete := $(addprefix $(tarball_pfx)/, web .gitignore)
78 tarball := $(tarball_pfx).tar.bz2
79
80 .PHONY: all clean clean2 distclean maintainer-clean install man tarball
81 all: $(prefixed_executables) $(man_pages)
82 man: $(man_pages)
83 tarball: $(tarball)
84
85 include $(lls_m4_dir)/makefile
86 include $(m4_ggo_dir)/makefile
87 include $(test_dir)/makefile.test
88 ifeq ($(findstring clean, $(MAKECMDGOALS)),)
89 -include $(deps)
90 -include $(m4_deps)
91 -include $(m4_lls_deps)
92 endif
93
94 $(object_dir) $(man_dir) $(ggo_dir) $(cmdline_dir) $(dep_dir) $(m4depdir) \
95                 $(help2man_dir) $(lls_suite_dir):
96         $(Q) $(MKDIR_P) $@
97
98 CPPFLAGS += -DBINDIR='"$(bindir)"'
99 CPPFLAGS += -DCOPYRIGHT_YEAR='"$(COPYRIGHT_YEAR)"'
100 CPPFLAGS += -DBUILD_DATE='"$(build_date)"'
101 CPPFLAGS += -DLOGLEVELS='$(LOGLEVELS)'
102 CPPFLAGS += -DUNAME_RS='"$(uname_rs)"'
103 CPPFLAGS += -DCC_VERSION='"$(cc_version)"'
104 CPPFLAGS += -I/usr/local/include
105 CPPFLAGS += -I$(cmdline_dir)
106 CPPFLAGS += -I$(lls_suite_dir)
107 CPPFLAGS += $(lopsub_cppflags)
108
109 CFLAGS += -Os
110 CFLAGS += -Wuninitialized
111 CFLAGS += -Wchar-subscripts
112 CFLAGS += -Werror-implicit-function-declaration
113 CFLAGS += -Wmissing-noreturn
114 CFLAGS += -Wbad-function-cast
115 CFLAGS += -fno-strict-aliasing
116
117 STRICT_CFLAGS = $(CFLAGS)
118 STRICT_CFLAGS += -g -Wundef -W
119 STRICT_CFLAGS += -Wredundant-decls
120 STRICT_CFLAGS += -Wno-sign-compare -Wno-unknown-pragmas
121 STRICT_CFLAGS += -Wformat -Wformat-security
122 STRICT_CFLAGS += -Wmissing-format-attribute
123 STRICT_CFLAGS += -Wdeclaration-after-statement
124
125 LDFLAGS += $(clock_gettime_ldflags)
126
127 ifeq ($(uname_s),Linux)
128         # these cause warnings on *BSD
129         CPPFLAGS += -Wunused-macros
130         STRICT_CFLAGS += -fdata-sections -ffunction-sections
131         STRICT_CFLAGS += -Wstrict-prototypes
132         STRICT_CFLAGS += -Wshadow
133         STRICT_CFLAGS += -Wunused -Wall
134         LDFLAGS += -Wl,--gc-sections
135 endif
136
137 cc-option = $(shell \
138         $(CC) $(1) -Werror -c -x c /dev/null -o /dev/null > /dev/null 2>&1 \
139         && echo "$(1)" \
140 )
141
142 STRICT_CFLAGS += $(call cc-option, -Wformat-signedness)
143
144 # To put more focus on warnings, be less verbose as default
145 # Use 'make V=1' to see the full commands
146 ifeq ("$(origin V)", "command line")
147         Q :=
148 else
149         Q := @
150 endif
151
152 server_command_lists := $(lls_suite_dir)/server_cmd.lsg.man
153 audiod_command_lists := \
154         $(lls_suite_dir)/audiod_cmd.lsg.man \
155         $(lls_suite_dir)/recv_cmd.lsg.man
156 play_command_lists := $(lls_suite_dir)/play_cmd.lsg.man
157 recv_command_lists := $(lls_suite_dir)/recv_cmd.lsg.man
158
159 $(man_dir)/para_server.1: $(server_command_lists)
160 $(man_dir)/para_audiod.1: $(audiod_command_lists)
161 $(man_dir)/para_play.1: $(play_command_lists)
162 $(man_dir)/para_recv.1: $(recv_command_lists)
163
164 $(man_dir)/para_server.1: man_util_command_lists := $(server_command_lists)
165 $(man_dir)/para_audiod.1: man_util_command_lists := $(audiod_command_lists)
166 $(man_dir)/para_play.1: man_util_command_lists := $(play_command_lists)
167 $(man_dir)/para_recv.1: man_util_command_lists := $(recv_command_lists)
168
169 $(man_dir)/para_%.1: $(lls_suite_dir)/%.lsg.man $(man_util_command_lists) \
170                 $(lls_m4_dir)/copyright.m4 | $(man_dir)
171         @[ -z "$(Q)" ] || echo 'LLSMAN $<'
172         $(Q) cat $< $(man_util_command_lists) > $@
173         $(Q) $(M4) -D COPYRIGHT_YEAR=$(COPYRIGHT_YEAR) $(lls_m4_dir)/copyright.m4 >> $@
174
175 $(man_dir)/para_%.1: $(man_util_command_lists) \
176                 $(ggo_dir)/%.ggo man_util.bash \
177                 | $(man_dir) $(help2man_dir)
178         @[ -z "$(Q)" ] || echo 'MAN $<'
179         $(Q) \
180                 COMMAND_LISTS="$(man_util_command_lists)" \
181                 FILTERS="$(filters)" \
182                 GENGETOPT=$(GENGETOPT) \
183                 GGO_DIR=$(ggo_dir) \
184                 HELP2MAN=$(HELP2MAN) \
185                 HELP2MAN_DIR=$(help2man_dir) \
186                 RECEIVERS="$(receivers)" \
187                 VERSION="$(GIT_VERSION)" \
188                 WRITERS="$(writers)" \
189                 ./man_util.bash $@
190
191 $(object_dir)/%.o: %.c | $(object_dir)
192
193 $(object_dir)/opus%.o $(dep_dir)/opus%.d: CPPFLAGS += $(opus_cppflags)
194 $(object_dir)/gui.o $(object_dir)/gui%.o $(dep_dir)/gui%.d \
195 : CPPFLAGS += $(curses_cppflags)
196 $(object_dir)/spx%.o $(dep_dir)/spx%.d: CPPFLAGS += $(speex_cppflags)
197 $(object_dir)/flac%.o $(dep_dir)/flac%.d: CPPFLAGS += $(flac_cppflags)
198
199 $(object_dir)/mp3_afh.o $(dep_dir)/mp3_afh.d: CPPFLAGS += $(id3tag_cppflags)
200 $(object_dir)/crypt.o $(dep_dir)/crypt.d: CPPFLAGS += $(openssl_cppflags)
201 $(object_dir)/gcrypt.o $(dep_dir)/gcrypt.d: CPPFLAGS += $(gcrypt_cppflags)
202 $(object_dir)/ao_write.o $(dep_dir)/ao_write.d: CPPFLAGS += $(ao_cppflags)
203 $(object_dir)/aac_afh.o $(dep_dir)/aac_afh.d: CPPFLAGS += $(mp4v2_cppflags)
204 $(object_dir)/alsa%.o $(dep_dir)/alsa%.d: CPPFLAGS += $(alsa_cppflags)
205
206 $(object_dir)/interactive.o $(dep_dir)/interactive.d \
207 : CPPFLAGS += $(readline_cppflags)
208
209 $(object_dir)/resample_filter.o $(dep_dir)/resample_filter.d \
210 : CPPFLAGS += $(samplerate_cppflags)
211
212 $(object_dir)/oss_write.o $(dep_dir)/oss_write.d \
213 : CPPFLAGS += $(oss_cppflags)
214
215 $(object_dir)/ao_write.o $(dep_dir)/ao_write.d \
216 : CPPFLAGS += $(ao_cppflags) $(pthread_cppflags)
217
218 $(object_dir)/mp3dec_filter.o $(dep_dir)/mp3dec_filter.d \
219 : CPPFLAGS += $(mad_cppflags)
220
221 $(object_dir)/aacdec_filter.o $(dep_dir)/aacdec_filter.d \
222 $(object_dir)/aac_common.o $(dep_dir)/aac_common.d \
223 $(object_dir)/aac_afh.o $(dep_dir)/aac_afh.d \
224 : CPPFLAGS += $(faad_cppflags)
225
226 $(object_dir)/ogg_afh.o $(dep_dir)/ogg_afh.d \
227 $(object_dir)/oggdec_filter.o $(dep_dir)/oggdec_filter.d \
228 : CPPFLAGS += $(vorbis_cppflags)
229
230 $(object_dir)/spx_common.o $(dep_dir)/spx_common.d \
231 $(object_dir)/spxdec_filter.o $(dep_dir)/spxdec_filter.d \
232 $(object_dir)/spx_afh.o $(dep_dir)/spx_afh.d \
233 $(object_dir)/oggdec_filter.o $(dep_dir)/oggdec_filter.d \
234 $(object_dir)/ogg_afh.o $(dep_dir)/ogg_afh.d \
235 $(object_dir)/ogg_afh_common.o $(dep_dir)/ogg_afh_common.d \
236 $(object_dir)/opus%.o $(dep_dir)/opus%.d \
237 : CPPFLAGS += $(ogg_cppflags)
238
239 $(object_dir)/afs.o $(dep_dir)/afs.d \
240 $(object_dir)/aft.o $(dep_dir)/aft.d \
241 $(object_dir)/attribute.o $(dep_dir)/attribute.d \
242 $(object_dir)/blob.o $(dep_dir)/blob.d  \
243 $(object_dir)/mood.o $(dep_dir)/mood.d \
244 $(object_dir)/playlist.o $(dep_dir)/playlist.d \
245 $(object_dir)/score.o $(dep_dir)/score.d \
246 $(object_dir)/server.o $(dep_dir)/server.d \
247 $(object_dir)/vss.o $(dep_dir)/vss.d \
248 $(object_dir)/command.o $(dep_dir)/command.d \
249 $(object_dir)/http_send.o $(dep_dir)/http_send.d \
250 $(object_dir)/dccp_send.o $(dep_dir)/dccp_send.d \
251 $(object_dir)/udp_send.o $(dep_dir)/udp_send.d \
252 $(object_dir)/send_common.o $(dep_dir)/send_common.d \
253 $(object_dir)/mm.o $(dep_dir)/mm.d \
254 : CPPFLAGS += $(osl_cppflags)
255
256 $(object_dir)/%.cmdline.o: CFLAGS += -Wno-unused-function
257 $(object_dir)/compress_filter.o: CFLAGS += -O3
258
259 $(object_dir)/%.o: %.c | $(object_dir)
260         @[ -z "$(Q)" ] || echo 'CC $<'
261         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(STRICT_CFLAGS) $<
262
263 $(object_dir)/%.cmdline.o: $(cmdline_dir)/%.cmdline.c $(cmdline_dir)/%.cmdline.h | $(object_dir)
264         @[ -z "$(Q)" ] || echo 'CC $<'
265         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $<
266
267 # The compiler outputs dependencies either as foo.h or as some_directory/foo.h,
268 # depending on whether the latter file exists. Since make needs the directory
269 # part we prefix the dependency as appropriate.
270 $(dep_dir)/%.d: %.c | $(dep_dir)
271         @[ -z "$(Q)" ] || echo 'DEP $<'
272         $(Q) $(CC) $(CPPFLAGS) -MM -MG -MP -MT $@ -MT $(object_dir)/$(*F).o $< \
273                 | sed -e "s@ \([a-zA-Z0-9_]\{1,\}\.cmdline.h\)@ $(cmdline_dir)/\1@g" \
274                 -e "s@ \([a-zA-Z0-9_]\{1,\}.lsg.h\)@ $(lls_suite_dir)/\1@g" > $@
275
276 para_recv para_afh para_play para_server: LDFLAGS += $(id3tag_ldflags)
277 para_write para_play para_audiod \
278 : LDFLAGS += $(ao_ldflags) $(pthread_ldflags) $(core_audio_ldflags)
279 para_client para_audioc para_play : LDFLAGS += $(readline_ldflags)
280 para_server: LDFLAGS += $(osl_ldflags)
281 para_gui: LDFLAGS += $(curses_ldflags)
282 para_server \
283 para_client \
284 para_audiod \
285 :LDFLAGS += \
286         $(crypto_ldflags)
287
288 para_audiod \
289 para_filter \
290 para_play \
291 : LDFLAGS += \
292         $(mad_ldflags) \
293         $(faad_ldflags) \
294         $(samplerate_ldflags) \
295         -lm
296
297 para_write \
298 para_play \
299 para_audiod \
300 para_fade \
301 : LDFLAGS += \
302         $(oss_ldflags) \
303         $(alsa_ldflags)
304
305 para_audioc \
306 para_audiod \
307 para_client \
308 para_play \
309 para_recv \
310 para_server \
311 : LDFLAGS += $(lopsub_ldflags)
312
313 para_server \
314 para_filter \
315 para_audiod \
316 para_play \
317 para_afh \
318 para_recv \
319 : LDFLAGS += \
320         $(ogg_ldflags) \
321         $(vorbis_ldflags) \
322         $(speex_ldflags) \
323         $(opus_ldflags) \
324         $(faad_ldflags) \
325         $(flac_ldflags)
326
327 para_server \
328 para_play \
329 para_afh \
330 para_recv \
331 : LDFLAGS += \
332         $(mp4v2_ldflags)
333
334 para_afh para_recv para_server para_play: LDFLAGS += $(iconv_ldflags)
335
336 $(foreach exe,$(executables),$(eval para_$(exe): $$($(exe)_objs)))
337 $(prefixed_executables):
338         @[ -z "$(Q)" ] || echo 'LD $@'
339         $(Q) $(CC) $^ -o $@ $(LDFLAGS)
340
341 clean:
342         @[ -z "$(Q)" ] || echo 'CLEAN'
343         $(Q) rm -f para_*
344         $(Q) rm -rf $(object_dir)
345
346 clean2: clean
347         @[ -z "$(Q)" ] || echo 'CLEAN2'
348         $(Q) rm -rf $(build_dir)
349 distclean: clean2 test-clean
350         @[ -z "$(Q)" ] || echo 'DISTCLEAN'
351         $(Q) rm -f Makefile autoscan.log config.status config.log
352         $(Q) rm -f GPATH GRTAGS GSYMS GTAGS
353
354 maintainer-clean: distclean
355         @[ -z "$(Q)" ] || echo 'MAINTAINER-CLEAN'
356         $(Q) rm -f *.tar.bz2 config.h configure config.h.in
357
358 install: all man
359         $(MKDIR_P) $(bindir) $(mandir)
360         $(INSTALL) -s --strip-program $(STRIP) -m 755 \
361                 $(prefixed_executables) $(bindir)
362         $(INSTALL) -m 644 $(man_pages) $(mandir)
363         $(MKDIR_P) $(vardir) >/dev/null 2>&1 || true # not fatal, so don't complain
364
365 $(tarball):
366         $(Q) rm -rf $(tarball) $(tarball_pfx)
367         $(Q) git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \
368                 | tar --delete $(tarball_delete) > $(tarball_pfx).tar
369         $(Q) $(MKDIR_P) $(tarball_pfx)
370         $(Q) ./GIT-VERSION-GEN > $(tarball_pfx)/VERSION
371         $(Q) cp $(autocrap) $(tarball_pfx)
372         $(Q) tar rf $(tarball_pfx).tar $(tarball_pfx)/*
373         $(Q) bzip2 -9 $(tarball_pfx).tar
374         $(Q) ls -l $(tarball)
375         $(Q) ln -sf $(tarball) paraslash-git.tar.bz2
376         $(Q) rm -rf $(tarball_pfx)