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