Convert para_gui 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 fade play recv write filter gui
47 unconverted_executables := $(filter-out $(converted_executables), $(executables))
48
49 audioc_objs += audioc.lsg.o
50 audiod_objs += $(addsuffix _cmd.lsg.o, recv filter audiod write) client.lsg.o
51 client_objs += client.lsg.o
52 fade_objs += fade.lsg.o
53 filter_objs += filter_cmd.lsg.o filter.lsg.o
54 gui_objs += gui.lsg.o
55 play_objs += $(addsuffix _cmd.lsg.o, recv filter play write) play.lsg.o
56 recv_objs += recv_cmd.lsg.o recv.lsg.o
57 server_objs += server_cmd.lsg.o
58 write_objs += write_cmd.lsg.o write.lsg.o
59
60 m4_deps := $(addprefix $(m4depdir)/, $(addsuffix .m4d, $(unconverted_executables)))
61 m4_lls_deps := \
62         audiod_cmd \
63         server_cmd \
64         play_cmd \
65         recv_cmd \
66         filter_cmd \
67         write_cmd \
68         $(converted_executables)
69 m4_lls_deps := $(addprefix $(lls_suite_dir)/, $(addsuffix .m4d, $(m4_lls_deps)))
70
71 # now prefix all objects with object dir
72 recv_objs := $(addprefix $(object_dir)/, $(recv_objs))
73 filter_objs := $(addprefix $(object_dir)/, $(filter_objs))
74 client_objs := $(addprefix $(object_dir)/, $(client_objs))
75 gui_objs := $(addprefix $(object_dir)/, $(gui_objs))
76 audiod_objs := $(addprefix $(object_dir)/, $(audiod_objs))
77 audioc_objs := $(addprefix $(object_dir)/, $(audioc_objs))
78 fade_objs := $(addprefix $(object_dir)/, $(fade_objs))
79 server_objs := $(addprefix $(object_dir)/, $(server_objs))
80 write_objs := $(addprefix $(object_dir)/, $(write_objs))
81 afh_objs := $(addprefix $(object_dir)/, $(afh_objs))
82 play_objs := $(addprefix $(object_dir)/, $(play_objs))
83
84 man_pages := $(patsubst %, $(man_dir)/%.1, $(prefixed_executables))
85
86 autocrap := config.h.in configure
87 tarball_pfx := $(PACKAGE_TARNAME)-$(GIT_VERSION)
88 tarball_delete := $(addprefix $(tarball_pfx)/, web .gitignore)
89 tarball := $(tarball_pfx).tar.bz2
90
91 .PHONY: all clean clean2 distclean maintainer-clean install man tarball
92 all: $(prefixed_executables) $(man_pages)
93 man: $(man_pages)
94 tarball: $(tarball)
95
96 include $(lls_m4_dir)/makefile
97 include $(m4_ggo_dir)/makefile
98 include $(test_dir)/makefile.test
99 ifeq ($(findstring clean, $(MAKECMDGOALS)),)
100 -include $(deps)
101 -include $(m4_deps)
102 -include $(m4_lls_deps)
103 endif
104
105 $(object_dir) $(man_dir) $(ggo_dir) $(cmdline_dir) $(dep_dir) $(m4depdir) \
106                 $(help2man_dir) $(lls_suite_dir):
107         $(Q) $(MKDIR_P) $@
108
109 CPPFLAGS += -DBINDIR='"$(bindir)"'
110 CPPFLAGS += -DCOPYRIGHT_YEAR='"$(COPYRIGHT_YEAR)"'
111 CPPFLAGS += -DBUILD_DATE='"$(build_date)"'
112 CPPFLAGS += -DLOGLEVELS='$(LOGLEVELS)'
113 CPPFLAGS += -DUNAME_RS='"$(uname_rs)"'
114 CPPFLAGS += -DCC_VERSION='"$(cc_version)"'
115 CPPFLAGS += -I/usr/local/include
116 CPPFLAGS += -I$(cmdline_dir)
117 CPPFLAGS += -I$(lls_suite_dir)
118 CPPFLAGS += $(lopsub_cppflags)
119
120 CFLAGS += -Os
121 CFLAGS += -Wuninitialized
122 CFLAGS += -Wchar-subscripts
123 CFLAGS += -Werror-implicit-function-declaration
124 CFLAGS += -Wmissing-noreturn
125 CFLAGS += -Wbad-function-cast
126 CFLAGS += -fno-strict-aliasing
127
128 STRICT_CFLAGS = $(CFLAGS)
129 STRICT_CFLAGS += -g -Wundef -W
130 STRICT_CFLAGS += -Wredundant-decls
131 STRICT_CFLAGS += -Wno-sign-compare -Wno-unknown-pragmas
132 STRICT_CFLAGS += -Wformat -Wformat-security
133 STRICT_CFLAGS += -Wmissing-format-attribute
134 STRICT_CFLAGS += -Wdeclaration-after-statement
135
136 LDFLAGS += $(clock_gettime_ldflags)
137
138 ifeq ($(uname_s),Linux)
139         # these cause warnings on *BSD
140         CPPFLAGS += -Wunused-macros
141         STRICT_CFLAGS += -fdata-sections -ffunction-sections
142         STRICT_CFLAGS += -Wstrict-prototypes
143         STRICT_CFLAGS += -Wshadow
144         STRICT_CFLAGS += -Wunused -Wall
145         LDFLAGS += -Wl,--gc-sections
146 endif
147
148 cc-option = $(shell \
149         $(CC) $(1) -Werror -c -x c /dev/null -o /dev/null > /dev/null 2>&1 \
150         && echo "$(1)" \
151 )
152
153 STRICT_CFLAGS += $(call cc-option, -Wformat-signedness)
154
155 # To put more focus on warnings, be less verbose as default
156 # Use 'make V=1' to see the full commands
157 ifeq ("$(origin V)", "command line")
158         Q :=
159 else
160         Q := @
161 endif
162
163 audiod_command_lists := $(addprefix $(lls_suite_dir)/, \
164         $(addsuffix _cmd.lsg.man, audiod recv filter write))
165 filter_command_lists := $(lls_suite_dir)/filter_cmd.lsg.man
166 play_command_lists := $(lls_suite_dir)/play_cmd.lsg.man
167 recv_command_lists := $(lls_suite_dir)/recv_cmd.lsg.man
168 server_command_lists := $(lls_suite_dir)/server_cmd.lsg.man
169 write_command_lists := $(lls_suite_dir)/write_cmd.lsg.man
170
171 $(man_dir)/para_server.1: $(server_command_lists)
172 $(man_dir)/para_filter.1: $(filter_command_lists)
173 $(man_dir)/para_write.1: $(write_command_lists)
174 $(man_dir)/para_audiod.1: $(audiod_command_lists)
175 $(man_dir)/para_play.1: $(play_command_lists)
176 $(man_dir)/para_recv.1: $(recv_command_lists)
177
178 $(man_dir)/para_server.1: man_util_command_lists := $(server_command_lists)
179 $(man_dir)/para_filter.1: man_util_command_lists := $(filter_command_lists)
180 $(man_dir)/para_write.1: man_util_command_lists := $(write_command_lists)
181 $(man_dir)/para_audiod.1: man_util_command_lists := $(audiod_command_lists)
182 $(man_dir)/para_play.1: man_util_command_lists := $(play_command_lists)
183 $(man_dir)/para_recv.1: man_util_command_lists := $(recv_command_lists)
184
185 $(man_dir)/para_%.1: $(lls_suite_dir)/%.lsg.man $(man_util_command_lists) \
186                 $(lls_m4_dir)/copyright.m4 | $(man_dir)
187         @[ -z "$(Q)" ] || echo 'LLSMAN $<'
188         $(Q) cat $< $(man_util_command_lists) > $@
189         $(Q) $(M4) -D COPYRIGHT_YEAR=$(COPYRIGHT_YEAR) $(lls_m4_dir)/copyright.m4 >> $@
190
191 $(man_dir)/para_%.1: $(man_util_command_lists) \
192                 $(ggo_dir)/%.ggo man_util.bash \
193                 | $(man_dir) $(help2man_dir)
194         @[ -z "$(Q)" ] || echo 'MAN $<'
195         $(Q) \
196                 COMMAND_LISTS="$(man_util_command_lists)" \
197                 FILTERS="$(filters)" \
198                 GENGETOPT=$(GENGETOPT) \
199                 GGO_DIR=$(ggo_dir) \
200                 HELP2MAN=$(HELP2MAN) \
201                 HELP2MAN_DIR=$(help2man_dir) \
202                 RECEIVERS="$(receivers)" \
203                 VERSION="$(GIT_VERSION)" \
204                 WRITERS="$(writers)" \
205                 ./man_util.bash $@
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 | $(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,\}.lsg.h\)@ $(lls_suite_dir)/\1@g" > $@
291
292 para_recv para_afh para_play para_server: LDFLAGS += $(id3tag_ldflags)
293 para_write para_play para_audiod \
294 : LDFLAGS += $(ao_ldflags) $(pthread_ldflags) $(core_audio_ldflags)
295 para_client para_audioc para_play : LDFLAGS += $(readline_ldflags)
296 para_server: LDFLAGS += $(osl_ldflags)
297 para_gui: LDFLAGS += $(curses_ldflags)
298 para_server \
299 para_client \
300 para_audiod \
301 :LDFLAGS += \
302         $(crypto_ldflags)
303
304 para_audiod \
305 para_filter \
306 para_play \
307 : LDFLAGS += \
308         $(mad_ldflags) \
309         $(faad_ldflags) \
310         $(samplerate_ldflags) \
311         -lm
312
313 para_write \
314 para_play \
315 para_audiod \
316 para_fade \
317 : LDFLAGS += \
318         $(oss_ldflags) \
319         $(alsa_ldflags)
320
321 para_audioc \
322 para_audiod \
323 para_client \
324 para_fade \
325 para_filter \
326 para_gui \
327 para_play \
328 para_recv \
329 para_server \
330 para_write \
331 : LDFLAGS += $(lopsub_ldflags)
332
333 para_server \
334 para_filter \
335 para_audiod \
336 para_play \
337 para_afh \
338 para_recv \
339 : LDFLAGS += \
340         $(ogg_ldflags) \
341         $(vorbis_ldflags) \
342         $(speex_ldflags) \
343         $(opus_ldflags) \
344         $(faad_ldflags) \
345         $(flac_ldflags)
346
347 para_server \
348 para_play \
349 para_afh \
350 para_recv \
351 : LDFLAGS += \
352         $(mp4v2_ldflags)
353
354 para_afh para_recv para_server para_play: LDFLAGS += $(iconv_ldflags)
355
356 $(foreach exe,$(executables),$(eval para_$(exe): $$($(exe)_objs)))
357 $(prefixed_executables):
358         @[ -z "$(Q)" ] || echo 'LD $@'
359         $(Q) $(CC) $^ -o $@ $(LDFLAGS)
360
361 clean:
362         @[ -z "$(Q)" ] || echo 'CLEAN'
363         $(Q) rm -f para_*
364         $(Q) rm -rf $(object_dir)
365
366 clean2: clean
367         @[ -z "$(Q)" ] || echo 'CLEAN2'
368         $(Q) rm -rf $(build_dir)
369 distclean: clean2 test-clean
370         @[ -z "$(Q)" ] || echo 'DISTCLEAN'
371         $(Q) rm -f Makefile autoscan.log config.status config.log
372         $(Q) rm -f GPATH GRTAGS GSYMS GTAGS
373
374 maintainer-clean: distclean
375         @[ -z "$(Q)" ] || echo 'MAINTAINER-CLEAN'
376         $(Q) rm -f *.tar.bz2 config.h configure config.h.in
377
378 install: all man
379         $(MKDIR_P) $(bindir) $(mandir)
380         $(INSTALL) -s --strip-program $(STRIP) -m 755 \
381                 $(prefixed_executables) $(bindir)
382         $(INSTALL) -m 644 $(man_pages) $(mandir)
383         $(MKDIR_P) $(vardir) >/dev/null 2>&1 || true # not fatal, so don't complain
384
385 $(tarball):
386         $(Q) rm -rf $(tarball) $(tarball_pfx)
387         $(Q) git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \
388                 | tar --delete $(tarball_delete) > $(tarball_pfx).tar
389         $(Q) $(MKDIR_P) $(tarball_pfx)
390         $(Q) ./GIT-VERSION-GEN > $(tarball_pfx)/VERSION
391         $(Q) cp $(autocrap) $(tarball_pfx)
392         $(Q) tar rf $(tarball_pfx).tar $(tarball_pfx)/*
393         $(Q) bzip2 -9 $(tarball_pfx).tar
394         $(Q) ls -l $(tarball)
395         $(Q) ln -sf $(tarball) paraslash-git.tar.bz2
396         $(Q) rm -rf $(tarball_pfx)