]> git.tuebingen.mpg.de Git - paraslash.git/blob - Makefile.in
build: ldflags conversion: libsocket.
[paraslash.git] / Makefile.in
1 prefix := @prefix@
2 exec_prefix := @exec_prefix@
3
4 BINDIR := @bindir@
5 VARDIR := /var/paraslash
6 PKGDATADIR := @datarootdir@/@PACKAGE_NAME@
7 MANDIR := @datarootdir@/man/man1
8 PACKAGE_VERSION := @PACKAGE_VERSION@
9 PACKAGE_STRING := @PACKAGE_STRING@
10 INSTALL := @install@
11 STRIP := $(CROSS_COMPILE)strip
12 HOSTCC ?= cc
13 executables := $(addprefix para_, @executables@)
14 ggo_descriptions_declared := @ggo_descriptions_declared@
15 object_executable_matrix := @object_executable_matrix@
16
17
18 GENGETOPT := @gengetopt@
19 HELP2MAN := @help2man@
20 MKDIR_P := mkdir -p
21
22 speex_cppflags := @speex_cppflags@
23 opus_cppflags := @opus_cppflags@
24
25 id3tag_ldflags := @id3tag_ldflags@
26 ogg_ldflags := @ogg_ldflags@
27 vorbis_ldflags := @vorbis_ldflags@
28 speex_ldflags := @speex_ldflags@
29 opus_ldflags := @opus_ldflags@
30 faad_ldflags := @faad_ldflags@
31 mad_ldflags := @mad_ldflags@
32 flac_ldflags := @flac_ldflags@
33 oss_ldflags := @oss_ldflags@
34 alsa_ldflags := @alsa_ldflags@
35 ao_ldflags := @ao_ldflags@
36 readline_ldflags := @readline_ldflags@
37 samplerate_ldflags := @samplerate_ldflags@
38 osl_ldflags := @osl_ldflags@
39 openssl_ldflags := @openssl_ldflags@
40 gcrypt_ldflags := @gcrypt_ldflags@
41 socket_ldflags := @socket_ldflags@
42
43 build_date := $(shell date)
44 uname_s := $(shell uname -s 2>/dev/null || echo "UNKNOWN_OS")
45 uname_rs := $(shell uname -rs)
46 cc_version := $(shell $(CC) --version | head -n 1)
47
48 GIT_VERSION := $(shell ./GIT-VERSION-GEN git-version.h)
49
50 m4_ggo_dir := m4/gengetopt
51 test_dir := t
52 ifeq ("$(origin O)", "command line")
53         build_dir := $(O)
54 else
55         build_dir := build
56 endif
57 ggo_dir := $(build_dir)/ggo
58 object_dir := $(build_dir)/objects
59 dep_dir := $(build_dir)/deps
60 man_dir := $(build_dir)/man/man1
61 cmdline_dir := $(build_dir)/cmdline
62 m4depdir := $(build_dir)/m4deps
63 help2man_dir := $(build_dir)/help2man
64 hostbin_dir := $(build_dir)/host/bin
65
66 DEBUG_CPPFLAGS += -g -Wunused -Wundef -W
67 DEBUG_CPPFLAGS += -Wredundant-decls
68 DEBUG_CPPFLAGS += -Wall -Wno-sign-compare -Wno-unknown-pragmas
69 DEBUG_CPPFLAGS += -Wformat-security
70 DEBUG_CPPFLAGS += -Wmissing-format-attribute
71
72 ifeq ($(uname_s),Linux)
73         CPPFLAGS += -fdata-sections -ffunction-sections
74         LDFLAGS += -Wl,--gc-sections
75         CPPFLAGS += -Wstrict-prototypes
76         CPPFLAGS += -Wshadow
77         # causes warnings on *BSD for the feature test macros
78         CPPFLAGS += -Wunused-macros
79 endif
80 CPPFLAGS += -Os
81 CPPFLAGS += -Wuninitialized
82 CPPFLAGS += -Wchar-subscripts
83 CPPFLAGS += -DBINDIR='"$(BINDIR)"'
84 CPPFLAGS += -DBUILD_DATE='"$(build_date)"'
85 CPPFLAGS += -DUNAME_RS='"$(uname_rs)"'
86 CPPFLAGS += -DCC_VERSION='"$(cc_version)"'
87 CPPFLAGS += -Werror-implicit-function-declaration
88 CPPFLAGS += -Wmissing-noreturn
89 CPPFLAGS += -Wbad-function-cast
90 CPPFLAGS += -fno-strict-aliasing
91 CPPFLAGS += -DMAIN_INPUT_FILE_IS_$(*F)
92 CPPFLAGS += @arch_cppflags@
93 CPPFLAGS += -I/usr/local/include
94 CPPFLAGS += -I$(cmdline_dir)
95 CPPFLAGS += @osl_cppflags@
96
97 LDFLAGS += @clock_gettime_ldflags@
98
99 man_pages := $(patsubst %, $(man_dir)/%.1, $(executables))
100
101 autocrap := config.h.in configure
102 tarball_pfx := @PACKAGE_TARNAME@-$(PACKAGE_VERSION)
103 tarball_delete := $(addprefix $(tarball_pfx)/,\
104         web .changelog_before_cvs .changelog_cvs .gitignore)
105 tarball := @PACKAGE_TARNAME@-$(PACKAGE_VERSION).tar.bz2
106
107 # To put more focus on warnings, be less verbose as default
108 # Use 'make V=1' to see the full commands
109 ifeq ("$(origin V)", "command line")
110         Q :=
111 else
112         Q := @
113 endif
114
115 .PHONY: dep all clean distclean maintainer-clean install man tarball
116 all: dep $(executables) $(man_pages)
117 dep: $(deps)
118 man: $(man_pages)
119 tarball: $(tarball)
120
121 $(object_dir) $(man_dir) $(ggo_dir) $(cmdline_dir) $(dep_dir) $(m4depdir) \
122                 $(help2man_dir) $(hostbin_dir):
123         $(Q) $(MKDIR_P) $@
124
125 -include $(m4_ggo_dir)/makefile
126
127 # When in doubt, use brute force (Ken Thompson)
128 TOUPPER = \
129 $(subst a,A,$(subst b,B,$(subst c,C,$(subst d,D,$(subst e,E,\
130 $(subst f,F,$(subst g,G,$(subst h,H,$(subst i,I,$(subst j,J,\
131 $(subst k,K,$(subst l,L,$(subst m,M,$(subst n,N,$(subst o,O,\
132 $(subst p,P,$(subst q,Q,$(subst r,R,$(subst s,S,$(subst t,T,\
133 $(subst u,U,$(subst v,V,$(subst w,W,$(subst x,X,$(subst y,Y,\
134 $(subst z,Z,$1))))))))))))))))))))))))))
135
136 %_command_list.h: %.cmd %.c
137         @[ -z "$(Q)" ] || echo 'GEN $@'
138         $(Q) ./command_util.sh h < $< >$@
139 %_command_list.man: %.cmd %.c
140         @[ -z "$(Q)" ] || echo 'GEN $@'
141         $(Q) ./command_util.sh man < $< > $@
142 %_completion.h: %.cmd %.c
143         @[ -z "$(Q)" ] || echo 'GEN $@'
144         $(Q) ./command_util.sh compl $(strip $(call TOUPPER,$(*F)))_COMPLETERS \
145                 $(strip $(call TOUPPER,$(*F)))_COMMANDS < $< > $@
146
147 server_command_list.h server_command_list.man server_completion.h: command.c
148 afs_command_list.h afs_command_list.man afs_completion.h: afs.c aft.c attribute.c
149 audiod_command_list.h audiod_command_list.man audiod_completion.h: audiod_command.c
150
151 server_command_lists_man = server_command_list.man afs_command_list.man
152 $(man_dir)/para_server.1: $(help2man_dir)/para_server $(server_command_lists_man) | $(man_dir)
153         @[ -z "$(Q)" ] || echo 'MAN $<'
154         $(Q) opts="`for i in $(server_command_lists_man); do printf "%s\n" "-i $$i"; done`"; \
155         $(HELP2MAN) $$opts ./$< > $@
156
157 $(man_dir)/para_audiod.1: $(help2man_dir)/para_audiod audiod_command_list.man | $(man_dir)
158         @[ -z "$(Q)" ] || echo 'MAN $<'
159         $(Q) $(HELP2MAN) -N -i audiod_command_list.man ./$< > $@
160
161 $(man_dir)/para_play.1: $(help2man_dir)/para_play play_command_list.man | $(man_dir)
162         @[ -z "$(Q)" ] || echo 'MAN $<'
163         $(Q) $(HELP2MAN) -N -i play_command_list.man ./$< > $@
164
165 $(man_dir)/%.1: $(help2man_dir)/% | $(man_dir)
166         @[ -z "$(Q)" ] || echo 'MAN $<'
167         $(Q) $(HELP2MAN) -N ./$< > $@
168
169 $(hostbin_dir)/error2: error2.c | $(hostbin_dir)
170         @[ -z "$(Q)" ] || echo 'HCC $<'
171         $(Q) $(HOSTCC) -o $@ $<
172 error2.h: $(hostbin_dir)/error2
173         @[ -z "$(Q)" ] || echo 'ER2 $<'
174         @echo "$(object_executable_matrix)" | $< > $@
175 $(object_dir)/crypt.o: crypt.c | $(object_dir)
176         @[ -z "$(Q)" ] || echo 'CC $<'
177         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) @openssl_cppflags@ $<
178 $(object_dir)/spx_common.o: spx_common.c | $(object_dir)
179         @[ -z "$(Q)" ] || echo 'CC $<'
180         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) $(speex_cppflags) @ogg_cppflags@ $<
181
182 $(object_dir)/spxdec_filter.o: spxdec_filter.c | $(object_dir)
183         @[ -z "$(Q)" ] || echo 'CC $<'
184         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) $(speex_cppflags) @ogg_cppflags@ $<
185
186 $(object_dir)/spx_afh.o: spx_afh.c | $(object_dir)
187         @[ -z "$(Q)" ] || echo 'CC $<'
188         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) $(speex_cppflags) @ogg_cppflags@ $<
189
190 $(object_dir)/oggdec_filter.o: oggdec_filter.c | $(object_dir)
191         @[ -z "$(Q)" ] || echo 'CC $<'
192         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) @ogg_cppflags@ $<
193
194 $(object_dir)/ogg_afh.o: ogg_afh.c | $(object_dir)
195         @[ -z "$(Q)" ] || echo 'CC $<'
196         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) @ogg_cppflags@ $<
197
198 $(object_dir)/ogg_afh_common.o: ogg_afh_common.c | $(object_dir)
199         @[ -z "$(Q)" ] || echo 'CC $<'
200         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) @ogg_cppflags@ $<
201
202 $(object_dir)/mp3dec_filter.o: mp3dec_filter.c | $(object_dir)
203         @[ -z "$(Q)" ] || echo 'CC $<'
204         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) @mad_cppflags@ $<
205
206 $(object_dir)/compress_filter.o: compress_filter.c | $(object_dir)
207         @[ -z "$(Q)" ] || echo 'CC $<'
208         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) -O3 $<
209
210 $(object_dir)/aacdec_filter.o: aacdec_filter.c | $(object_dir)
211         @[ -z "$(Q)" ] || echo 'CC $<'
212         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
213
214 $(object_dir)/aac_common.o: aac_common.c | $(object_dir)
215         @[ -z "$(Q)" ] || echo 'CC $<'
216         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
217
218 $(object_dir)/aac_afh.o: aac_afh.c | $(object_dir)
219         @[ -z "$(Q)" ] || echo 'CC $<'
220         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
221
222 $(object_dir)/opus%.o: CPPFLAGS += $(opus_cppflags)
223 $(object_dir)/mp3_afh.o: CPPFLAGS += @id3tag_cppflags@
224 $(object_dir)/mp3_afh.o: mp3_afh.c | $(object_dir)
225
226 $(object_dir)/gui%.o: gui%.c | $(object_dir)
227         @[ -z "$(Q)" ] || echo 'CC $<'
228         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) @curses_cppflags@ $<
229 $(object_dir)/ao_write.o: ao_write.c | $(object_dir)
230         @[ -z "$(Q)" ] || echo 'CC $<'
231         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) @ao_cppflags@ $<
232
233 $(object_dir)/%.cmdline.o: $(cmdline_dir)/%.cmdline.c $(cmdline_dir)/%.cmdline.h | $(object_dir)
234         @[ -z "$(Q)" ] || echo 'CC $<'
235         $(Q) $(CC) -c $(CPPFLAGS) -Wno-unused-function -o $@ $<
236
237 $(object_dir)/%.o: %.c | $(object_dir)
238         @[ -z "$(Q)" ] || echo 'CC $<'
239         $(Q) $(CC) -c -o $@ $(CPPFLAGS) $(DEBUG_CPPFLAGS) $<
240
241 $(dep_dir)/%.cmdline.d: $(cmdline_dir)/%.cmdline.c | $(dep_dir)
242         @[ -z "$(Q)" ] || echo 'DEP $<'
243         $(Q) ./depend.sh $(dep_dir) $(object_dir) $(cmdline_dir) \
244                 $(CPPFLAGS) $< > $@
245
246 $(dep_dir)/%.d: %.c | $(dep_dir)
247         @[ -z "$(Q)" ] || echo 'DEP $<'
248         $(Q) ./depend.sh $(dep_dir) $(object_dir) $(cmdline_dir) \
249                 $(CPPFLAGS) $< > $@
250
251 # sort removes duplicate words, which is all we need here
252 all_objs := $(sort @recv_objs@ @filter_objs@ @client_objs@ @gui_objs@ \
253         @audiod_objs@ @audioc_objs@ @fade_objs@ @server_objs@ \
254         @write_objs@ @afh_objs@ @play_objs@)
255 deps := $(addprefix $(dep_dir)/, $(all_objs:.o=.d))
256 m4_deps := $(addprefix $(m4depdir)/, $(addsuffix .m4d, @executables@))
257
258 recv_objs := $(addprefix $(object_dir)/, @recv_objs@)
259 filter_objs := $(addprefix $(object_dir)/, @filter_objs@)
260 client_objs := $(addprefix $(object_dir)/, @client_objs@)
261 gui_objs := $(addprefix $(object_dir)/, @gui_objs@)
262 audiod_objs := $(addprefix $(object_dir)/, @audiod_objs@)
263 audioc_objs := $(addprefix $(object_dir)/, @audioc_objs@)
264 fade_objs := $(addprefix $(object_dir)/, @fade_objs@)
265 server_objs := $(addprefix $(object_dir)/, @server_objs@)
266 write_objs := $(addprefix $(object_dir)/, @write_objs@)
267 afh_objs := $(addprefix $(object_dir)/, @afh_objs@)
268 play_objs := $(addprefix $(object_dir)/, @play_objs@)
269
270 ifeq ($(findstring clean, $(MAKECMDGOALS)),)
271 -include $(deps)
272 -include $(m4_deps)
273 endif
274
275 para_recv para_afh para_play para_server: LDFLAGS += $(id3tag_ldflags)
276 para_write para_play para_audiod: LDFLAGS += $(ao_ldflags)
277 para_client para_audioc para_play : LDFLAGS += $(readline_ldflags)
278 para_server: LDFLAGS += $(osl_ldflags)
279
280 para_server \
281 para_client \
282 para_audiod \
283 :LDFLAGS += \
284         $(openssl_ldflags) \
285         $(gcrypt_ldflags)
286
287 para_audiod \
288 para_filter \
289 para_play \
290 : LDFLAGS += \
291         $(mad_ldflags) \
292         $(samplerate_ldflags)
293
294 para_write \
295 para_play \
296 para_audiod \
297 para_fade \
298 : LDFLAGS += \
299         $(oss_ldflags) \
300         $(alsa_ldflags)
301
302 para_server \
303 para_filter \
304 para_audiod \
305 para_play \
306 para_afh \
307 para_recv \
308 : LDFLAGS += \
309         $(ogg_ldflags) \
310         $(vorbis_ldflags) \
311         $(speex_ldflags) \
312         $(opus_ldflags) \
313         $(faad_ldflags) \
314         $(flac_ldflags)
315
316 para_server \
317 para_client \
318 para_audioc \
319 para_audiod \
320 para_recv \
321 : LDFLAGS += \
322         $(socket_ldflags)
323
324 para_recv: $(recv_objs)
325         @[ -z "$(Q)" ] || echo 'LD $@'
326         $(Q) $(CC) $(recv_objs) -o $@ @recv_ldflags@ $(LDFLAGS)
327
328 para_filter: $(filter_objs)
329         @[ -z "$(Q)" ] || echo 'LD $@'
330         $(Q) $(CC) $(filter_objs) -o $@ @filter_ldflags@ $(LDFLAGS)
331
332 para_client: $(client_objs)
333         @[ -z "$(Q)" ] || echo 'LD $@'
334         $(Q) $(CC) -o $@ $(client_objs) @client_ldflags@ $(LDFLAGS)
335
336 para_gui: $(gui_objs)
337         @[ -z "$(Q)" ] || echo 'LD $@'
338         $(Q) $(CC) -o $@ $(gui_objs) @curses_ldflags@ $(LDFLAGS)
339
340 para_audiod: $(audiod_objs)
341         @[ -z "$(Q)" ] || echo 'LD $@'
342         $(Q) $(CC) -o $@ $(audiod_objs) @audiod_ldflags@ $(LDFLAGS)
343
344 para_audioc: $(audioc_objs)
345         @[ -z "$(Q)" ] || echo 'LD $@'
346         $(Q) $(CC) -o $@ $(audioc_objs) @audioc_ldflags@ $(LDFLAGS)
347
348 para_fade: $(fade_objs)
349         @[ -z "$(Q)" ] || echo 'LD $@'
350         $(Q) $(CC) -o $@ $(fade_objs) @fade_ldflags@ $(LDFLAGS)
351
352 para_server: $(server_objs)
353         @[ -z "$(Q)" ] || echo 'LD $@'
354         $(Q) $(CC) -o $@ $(server_objs) @server_ldflags@ $(LDFLAGS)
355
356 para_write: $(write_objs)
357         @[ -z "$(Q)" ] || echo 'LD $@'
358         $(Q) $(CC) -o $@ $(write_objs) @write_ldflags@ $(LDFLAGS)
359
360 para_afh: $(afh_objs)
361         @[ -z "$(Q)" ] || echo 'LD $@'
362         $(Q) $(CC) -o $@ $(afh_objs) @afh_ldflags@ $(LDFLAGS)
363
364 para_play: $(play_objs)
365         @[ -z "$(Q)" ] || echo 'LD $@'
366         $(Q) $(CC) -o $@ $(play_objs) @play_ldflags@ $(LDFLAGS)
367
368 clean:
369         @[ -z "$(Q)" ] || echo 'CLEAN'
370         $(Q) rm -f $(executables)
371         $(Q) rm -rf $(object_dir)
372
373 clean2: clean
374         @[ -z "$(Q)" ] || echo 'CLEAN2'
375         $(Q) rm -f *_command_list.* *_completion.h
376         $(Q) rm -rf $(build_dir)
377 distclean: clean2 test-clean
378         @[ -z "$(Q)" ] || echo 'DISTCLEAN'
379         $(Q) rm -f Makefile autoscan.log config.status config.log
380         $(Q) rm -rf autom4te.cache
381         $(Q) rm -f GPATH GRTAGS GSYMS GTAGS
382
383 maintainer-clean: distclean
384         rm -f *.tar.bz2 config.h configure config.h.in
385         rm -rf web_sync
386
387 install: all man
388         $(MKDIR_P) $(BINDIR) $(MANDIR)
389         $(INSTALL) -s --strip-program $(STRIP) -m 755 $(executables) $(BINDIR)
390         $(INSTALL) -m 644 $(man_pages) $(MANDIR)
391         $(MKDIR_P) $(VARDIR) >/dev/null 2>&1 || true # not fatal, so don't complain
392
393 $(tarball):
394         rm -rf $(tarball_pfx).tar.bz2 $(tarball_pfx)
395         git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \
396                 | tar --delete $(tarball_delete) > $(tarball_pfx).tar
397         $(MKDIR_P) $(tarball_pfx)
398         ./GIT-VERSION-GEN > $(tarball_pfx)/VERSION
399         cp -r $(autocrap) $(tarball_pfx)
400         tar rf $(tarball_pfx).tar $(tarball_pfx)/*
401         bzip2 -9 $(tarball_pfx).tar
402         ls -l $(tarball_pfx).tar.bz2
403         rm -rf $(tarball_pfx)
404 include $(test_dir)/makefile.test