]> git.tuebingen.mpg.de Git - paraslash.git/blob - Makefile.real
140d8f311b81029a5fa01023ecfb33c0a94a2d19
[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 .ONESHELL:
10 .SHELLFLAGS := -ec
11
12 LOGLEVELS := LL_DEBUG,LL_INFO,LL_NOTICE,LL_WARNING,LL_ERROR,LL_CRIT,LL_EMERG
13 vardir := /var/paraslash
14 mandir := $(datarootdir)/man/man1
15 MKDIR_P := mkdir -p
16 prefixed_executables := $(addprefix para_, $(executables))
17
18 build_date := $(shell date)
19 uname_s := $(shell uname -s 2>/dev/null || echo "UNKNOWN_OS")
20 uname_rs := $(shell uname -rs)
21 cc_version := $(shell $(CC) --version | head -n 1)
22 GIT_VERSION := $(shell ./GIT-VERSION-GEN git-version.h)
23 COPYRIGHT_YEAR := 2021
24
25 ifeq ("$(origin O)", "command line")
26         build_dir := $(O)
27 else
28         build_dir := build
29 endif
30 object_dir := $(build_dir)/objects
31 dep_dir := $(build_dir)/deps
32 man_dir := $(build_dir)/man/man1
33 m4depdir := $(build_dir)/m4deps
34 lls_suite_dir := $(build_dir)/lls
35 lls_m4_dir := m4/lls
36 test_dir := t
37 yy_src_dir = yy
38 yy_build_dir = $(build_dir)/yy
39
40 # sort removes duplicate words, which is all we need here
41 all_objs := $(sort $(recv_objs) $(filter_objs) $(client_objs) $(gui_objs) \
42         $(audiod_objs) $(audioc_objs) $(mixer_objs) $(server_objs) \
43         $(write_objs) $(afh_objs) $(play_objs))
44 deps := $(addprefix $(dep_dir)/, $(all_objs:.o=.d))
45 deps += $(addprefix $(dep_dir)/, mp.bison.d mp.flex.d)
46
47 afh_objs += afh.lsg.o
48 audioc_objs += audioc.lsg.o
49 audiod_objs += $(addsuffix _cmd.lsg.o, recv filter audiod write) \
50         client.lsg.o audiod.lsg.o
51 client_objs += client.lsg.o
52 mixer_objs += mixer.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 server.lsg.o
58 upgrade_db_objs += upgrade_db.lsg.o
59 write_objs += write_cmd.lsg.o write.lsg.o
60
61 cmd_suites := $(addsuffix _cmd, audiod server play recv filter write)
62 suites := $(addprefix $(lls_suite_dir)/, $(cmd_suites) $(executables))
63 m4_lls_deps := $(addsuffix .m4d, $(suites))
64 lsg_h := $(addsuffix .lsg.h, $(suites))
65
66 # flex/bison objects and headers are only needed if para_server is built
67 ifeq ("$(findstring server, $(executables))", "server")
68         server_objs += mp.flex.o mp.bison.o
69         yy_h := $(yy_build_dir)/mp.bison.h
70 endif
71
72 # now prefix all objects with object dir
73 recv_objs := $(addprefix $(object_dir)/, $(recv_objs))
74 filter_objs := $(addprefix $(object_dir)/, $(filter_objs))
75 client_objs := $(addprefix $(object_dir)/, $(client_objs))
76 gui_objs := $(addprefix $(object_dir)/, $(gui_objs))
77 audiod_objs := $(addprefix $(object_dir)/, $(audiod_objs))
78 audioc_objs := $(addprefix $(object_dir)/, $(audioc_objs))
79 mixer_objs := $(addprefix $(object_dir)/, $(mixer_objs))
80 server_objs := $(addprefix $(object_dir)/, $(server_objs))
81 upgrade_db_objs := $(addprefix $(object_dir)/, $(upgrade_db_objs))
82 write_objs := $(addprefix $(object_dir)/, $(write_objs))
83 afh_objs := $(addprefix $(object_dir)/, $(afh_objs))
84 play_objs := $(addprefix $(object_dir)/, $(play_objs))
85
86 man_pages := $(patsubst %, $(man_dir)/%.1, $(prefixed_executables))
87
88 autocrap := config.h.in configure
89 tarball_pfx := $(PACKAGE_TARNAME)-$(GIT_VERSION)
90 tarball_delete := $(addprefix $(tarball_pfx)/, web .gitignore)
91 tarball := $(tarball_pfx).tar.xz
92
93 all: $(prefixed_executables) $(man_pages)
94 .PHONY: all mostlyclean clean distclean maintainer-clean install \
95         install-strip man dist tarball
96
97 man: $(man_pages)
98
99 include $(lls_m4_dir)/makefile
100 include $(test_dir)/makefile.test
101 include $(yy_src_dir)/makefile
102 ifeq ($(findstring clean, $(MAKECMDGOALS)),)
103 -include $(deps)
104 -include $(m4_lls_deps)
105 endif
106
107 $(object_dir) $(man_dir) $(dep_dir) $(m4depdir) $(lls_suite_dir) \
108         $(yy_build_dir):
109         @$(MKDIR_P) $@
110
111 CPPFLAGS += -DBINDIR='"$(bindir)"'
112 CPPFLAGS += -DCOPYRIGHT_YEAR='"$(COPYRIGHT_YEAR)"'
113 CPPFLAGS += -DBUILD_DATE='"$(build_date)"'
114 CPPFLAGS += -DLOGLEVELS='$(LOGLEVELS)'
115 CPPFLAGS += -DUNAME_RS='"$(uname_rs)"'
116 CPPFLAGS += -DCC_VERSION='"$(cc_version)"'
117 CPPFLAGS += -I$(lls_suite_dir)
118 CPPFLAGS += -I$(yy_build_dir)
119 CPPFLAGS += $(lopsub_cppflags)
120
121 STRICT_CFLAGS += -fno-strict-aliasing
122 STRICT_CFLAGS += -g
123 STRICT_CFLAGS += -Os
124 STRICT_CFLAGS += -Wundef -W -Wuninitialized
125 STRICT_CFLAGS += -Wchar-subscripts
126 STRICT_CFLAGS += -Werror-implicit-function-declaration
127 STRICT_CFLAGS += -Wmissing-noreturn
128 STRICT_CFLAGS += -Wbad-function-cast
129 STRICT_CFLAGS += -Wredundant-decls
130 STRICT_CFLAGS += -Wno-sign-compare -Wno-unknown-pragmas
131 STRICT_CFLAGS += -Wdeclaration-after-statement
132 STRICT_CFLAGS += -Wformat -Wformat-security -Wmissing-format-attribute
133
134 ifeq ($(uname_s),Linux)
135         # these cause warnings on *BSD
136         CPPFLAGS += -Wunused-macros
137         STRICT_CFLAGS += -fdata-sections -ffunction-sections
138         STRICT_CFLAGS += -Wstrict-prototypes
139         STRICT_CFLAGS += -Wshadow
140         STRICT_CFLAGS += -Wunused -Wall
141         LDFLAGS += -Wl,--gc-sections
142 endif
143
144 cc-option = $(shell \
145         $(CC) $(1) -Werror -c -x c /dev/null -o /dev/null > /dev/null 2>&1 \
146         && echo "$(1)" \
147 )
148
149 STRICT_CFLAGS += $(call cc-option, -Wformat-signedness)
150 STRICT_CFLAGS += $(call cc-option, -Wdiscarded-qualifiers)
151
152 # To put more focus on warnings, be less verbose as default
153 # Use 'make V=1' to see the full commands
154 ifeq ("$(origin V)", "command line")
155         SAY =
156 else
157         SAY = @echo '$(strip $(1))'
158 endif
159
160 audiod_commands := $(addprefix $(lls_suite_dir)/, \
161         $(addsuffix _cmd.lsg.man, audiod recv filter write))
162 filter_commands := $(lls_suite_dir)/filter_cmd.lsg.man
163 play_commands := $(lls_suite_dir)/play_cmd.lsg.man
164 recv_commands := $(lls_suite_dir)/recv_cmd.lsg.man
165 server_commands := $(lls_suite_dir)/server_cmd.lsg.man
166 write_commands := $(lls_suite_dir)/write_cmd.lsg.man
167
168 $(man_dir)/para_audiod.1: $(audiod_commands)
169 $(man_dir)/para_filter.1: $(filter_commands)
170 $(man_dir)/para_play.1: $(play_commands)
171 $(man_dir)/para_recv.1: $(recv_commands)
172 $(man_dir)/para_server.1: $(server_commands)
173 $(man_dir)/para_write.1: $(write_commands)
174
175 $(man_dir)/para_audiod.1: all_commands := $(audiod_commands)
176 $(man_dir)/para_filter.1: all_commands := $(filter_commands)
177 $(man_dir)/para_play.1: all_commands := $(play_commands)
178 $(man_dir)/para_recv.1: all_commands := $(recv_commands)
179 $(man_dir)/para_server.1: all_commands := $(server_commands)
180 $(man_dir)/para_write.1: all_commands := $(write_commands)
181
182 $(man_dir)/para_%.1: $(lls_suite_dir)/%.lsg.man \
183                 $(lls_m4_dir)/copyright.m4 | $(man_dir)
184         $(call SAY, LLSMAN $<)
185         cat $< $(all_commands) > $@
186         $(M4) -D COPYRIGHT_YEAR=$(COPYRIGHT_YEAR) $(lls_m4_dir)/copyright.m4 >> $@
187
188 $(object_dir)/%.o: %.c | $(object_dir)
189
190 $(object_dir)/opus%.o: CPPFLAGS += $(opus_cppflags)
191 $(object_dir)/gui.o $(object_dir)/gui%.o \
192 : CPPFLAGS += $(curses_cppflags)
193 $(object_dir)/spx%.o: CPPFLAGS += $(speex_cppflags)
194 $(object_dir)/flac%.o: CPPFLAGS += $(flac_cppflags)
195
196 $(object_dir)/mp3_afh.o: CPPFLAGS += $(id3tag_cppflags)
197 $(object_dir)/openssl.o: CPPFLAGS += $(openssl_cppflags)
198 $(object_dir)/gcrypt.o: CPPFLAGS += $(gcrypt_cppflags)
199 $(object_dir)/ao_write.o: CPPFLAGS += $(ao_cppflags)
200 $(object_dir)/alsa%.o: CPPFLAGS += $(alsa_cppflags)
201
202 $(object_dir)/interactive.o \
203 : CPPFLAGS += $(readline_cppflags)
204
205 $(object_dir)/resample_filter.o \
206 : CPPFLAGS += $(samplerate_cppflags)
207
208 $(object_dir)/oss_write.o \
209 : CPPFLAGS += $(oss_cppflags)
210
211 $(object_dir)/ao_write.o \
212 : CPPFLAGS += $(ao_cppflags) $(pthread_cppflags)
213
214 $(object_dir)/mp3dec_filter.o \
215 : CPPFLAGS += $(mad_cppflags)
216
217 $(object_dir)/aacdec_filter.o \
218 $(object_dir)/aac_afh.o \
219 : CPPFLAGS += $(faad_cppflags)
220
221 $(object_dir)/ogg_afh.o \
222 $(object_dir)/oggdec_filter.o \
223 : CPPFLAGS += $(vorbis_cppflags)
224
225 $(object_dir)/spx_common.o \
226 $(object_dir)/spxdec_filter.o \
227 $(object_dir)/spx_afh.o \
228 $(object_dir)/oggdec_filter.o \
229 $(object_dir)/ogg_afh.o \
230 $(object_dir)/ogg_afh_common.o \
231 $(object_dir)/opus%.o \
232 : CPPFLAGS += $(ogg_cppflags)
233
234 $(object_dir)/afs.o \
235 $(object_dir)/aft.o \
236 $(object_dir)/attribute.o \
237 $(object_dir)/blob.o  \
238 $(object_dir)/mood.o \
239 $(object_dir)/playlist.o \
240 $(object_dir)/score.o \
241 $(object_dir)/server.o \
242 $(object_dir)/vss.o \
243 $(object_dir)/command.o \
244 $(object_dir)/http_send.o \
245 $(object_dir)/dccp_send.o \
246 $(object_dir)/udp_send.o \
247 $(object_dir)/send_common.o \
248 $(object_dir)/mm.o \
249 : CPPFLAGS += $(osl_cppflags)
250
251 $(object_dir)/compress_filter.o: CFLAGS += -O3
252
253 $(object_dir)/%.o: %.c | $(object_dir) $(dep_dir) $(lsg_h) $(yy_h)
254         $(call SAY, CC $<)
255         $(CC) -c -o $@ -MMD -MF $(dep_dir)/$(*F).d -MT $@ $(CPPFLAGS) \
256                 $(STRICT_CFLAGS) $(CFLAGS) $<
257
258 para_recv para_afh para_play para_server: LDFLAGS += $(id3tag_ldflags)
259 para_write para_play para_audiod \
260 : LDFLAGS += $(ao_ldflags) $(pthread_ldflags)
261 para_client para_audioc para_play : LDFLAGS += $(readline_ldflags)
262 para_server para_upgrade_db: LDFLAGS += $(osl_ldflags)
263 para_gui: LDFLAGS += $(curses_ldflags)
264 para_server \
265 para_client \
266 para_audiod \
267 :LDFLAGS += \
268         $(crypto_ldflags)
269
270 para_audiod \
271 para_filter \
272 para_play \
273 : LDFLAGS += \
274         $(mad_ldflags) \
275         $(faad_ldflags) \
276         $(samplerate_ldflags) \
277         -lm
278
279 para_mixer: LDFLAGS += -lm
280
281 para_write \
282 para_play \
283 para_audiod \
284 para_mixer \
285 : LDFLAGS += \
286         $(oss_ldflags) \
287         $(alsa_ldflags)
288
289 para_afh \
290 para_audioc \
291 para_audiod \
292 para_client \
293 para_mixer \
294 para_filter \
295 para_gui \
296 para_play \
297 para_recv \
298 para_server \
299 para_upgrade_db \
300 para_write \
301 : LDFLAGS += $(lopsub_ldflags)
302
303 para_server \
304 para_filter \
305 para_audiod \
306 para_play \
307 para_afh \
308 para_recv \
309 : LDFLAGS += \
310         $(ogg_ldflags) \
311         $(vorbis_ldflags) \
312         $(speex_ldflags) \
313         $(opus_ldflags) \
314         $(faad_ldflags) \
315         $(flac_ldflags)
316
317 para_afh para_recv para_server para_play: LDFLAGS += $(iconv_ldflags)
318
319 $(foreach exe,$(executables),$(eval para_$(exe): $$($(exe)_objs)))
320 $(prefixed_executables):
321         $(call SAY, LD $@)
322         $(CC) $^ -o $@ $(LDFLAGS)
323
324 mostlyclean:
325         $(call SAY, MOSTLYCLEAN)
326         rm -f para_*
327         rm -rf $(object_dir)
328 clean: mostlyclean
329         $(call SAY, CLEAN)
330         rm -rf $(build_dir)
331 distclean: clean
332         $(call SAY, DISTCLEAN)
333         rm -f Makefile autoscan.log config.status config.log
334         rm -f config.h configure config.h.in
335 maintainer-clean: distclean
336         $(call SAY, MAINTAINER-CLEAN)
337         rm -f *.tar.bz2 *.tar.xz
338         rm -f GPATH GRTAGS GSYMS GTAGS
339
340 INSTALL ?= install
341 INSTALL_PROGRAM ?= $(INSTALL)
342 INSTALL_DATA ?= $(INSTALL) -m 644
343 ifneq ($(findstring strip, $(MAKECMDGOALS)),)
344         strip_option := -s
345 endif
346
347 install install-strip: all man
348         $(MKDIR_P) $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)
349         $(INSTALL) $(strip_option) $(prefixed_executables) $(DESTDIR)$(bindir)
350         $(INSTALL_DATA) $(man_pages) $(DESTDIR)$(mandir)
351         $(MKDIR_P) $(DESTDIR)$(vardir) >/dev/null 2>&1 || true # not fatal, so don't complain
352
353 $(tarball) dist tarball:
354         $(call SAY, DIST)
355         rm -rf $(tarball) $(tarball_pfx)
356         git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \
357            | tar --delete $(tarball_delete) > $(tarball_pfx).tar
358         $(MKDIR_P) $(tarball_pfx)
359         ./GIT-VERSION-GEN > $(tarball_pfx)/VERSION
360         cp $(autocrap) $(tarball_pfx)
361         tar rf $(tarball_pfx).tar $(tarball_pfx)/*
362         xz -9 $(tarball_pfx).tar
363         ls -l $(tarball)
364         ln -sf $(tarball) paraslash-git.tar.xz
365         rm -rf $(tarball_pfx)