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