audiod: Change return value of open_current_receiver() to void.
[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_sh := @install_sh@
11
12 build_date := $(shell date)
13 uname_s := $(shell uname -s 2>/dev/null || echo "UNKNOWN_OS")
14 uname_rs := $(shell uname -rs)
15 cc_version := $(shell $(CC) --version | head -n 1)
16 codename := elliptic inheritance
17
18 DEBUG_CPPFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W
19 DEBUG_CPPFLAGS += -Wredundant-decls
20 # produces false positives
21 # DEBUG_CPPFLAGS += -Wunreachable-code
22 # DEBUG_CPPFLAGS += -Wwrite-strings
23
24 # invalid option for gcc-3.3.3
25 # DEBUG_CPPFLAGS += -Wextra
26 # DEBUG_CPPFLAGS += -Wold-style-definition
27 # DEBUG_CPPFLAGS += -Wdeclaration-after-statement
28
29 # many warnings about trivial stuff
30 # CPPFLAGS += -Wconversion
31
32 ifeq ($(uname_s),Linux)
33         CPPFLAGS += -fdata-sections -ffunction-sections
34         LDFLAGS += -Wl,--gc-sections
35         CPPFLAGS += -Wstrict-prototypes
36         CPPFLAGS += -Wshadow
37 endif
38 CPPFLAGS += -Os
39 CPPFLAGS += -Wall
40 CPPFLAGS += -Wuninitialized
41 CPPFLAGS += -Wchar-subscripts
42 CPPFLAGS += -Wformat-security
43 CPPFLAGS += -DBINDIR='"$(BINDIR)"'
44 CPPFLAGS += -DBUILD_DATE='"$(build_date)"'
45 CPPFLAGS += -DUNAME_RS='"$(uname_rs)"'
46 CPPFLAGS += -DCODENAME='"$(codename)"'
47 CPPFLAGS += -DCC_VERSION='"$(cc_version)"'
48 CPPFLAGS += -Werror-implicit-function-declaration
49 CPPFLAGS += -Wmissing-format-attribute
50 CPPFLAGS += -Wmissing-noreturn
51 CPPFLAGS += -Wunused-macros
52 CPPFLAGS += -Wbad-function-cast
53 CPPFLAGS += -DMAIN_INPUT_FILE_IS_$(*F)
54 CPPFLAGS += @SSL_CPPFLAGS@
55 CPPFLAGS += @ncurses_cppflags@
56 CPPFLAGS += @arch_cppflags@
57
58 BINARIES = para_server para_client para_audioc para_recv \
59         para_filter para_write para_fsck para_afh @extra_binaries@
60 man_binaries := $(BINARIES)
61 man_pages := $(patsubst %, man/man1/%.1, $(man_binaries))
62 man_pages_in := $(patsubst %, web/%.man.in.html, $(man_binaries))
63
64 ggo_dir := ggo
65
66 m4_ggos := afh audioc audiod client filter fsck gui recv server write
67 all_ggos := $(m4_ggos) dccp_recv oggdec_filter alsa_write fade http_recv \
68         osx_write udp_recv amp_filter compress_filter file_write \
69         grab_client mp3dec_filter
70 ggo_generated := $(addsuffix .cmdline.c, $(all_ggos)) $(addsuffix .cmdline.h, $(all_ggos)) \
71         $(addsuffix .ggo, $(addprefix $(ggo_dir)/,$(m4_ggos)))
72
73 autocrap := config.h.in configure
74 tarball_pfx := @PACKAGE_TARNAME@-$(PACKAGE_VERSION)
75 tarball_delete = web versions pics .changelog_before_cvs .changelog_cvs .gitignore
76 tarball_delete := $(patsubst %,$(tarball_pfx)/%,$(tarball_delete))
77 tarball_add := $(ggo_generated) $(autocrap)
78 tarball := @PACKAGE_TARNAME@-$(PACKAGE_VERSION).tar.bz2
79
80 .PHONY: clean distclean maintainer-clean install man tarball
81 all: $(BINARIES) $(man_pages)
82 man: $(man_pages)
83 tarball: $(tarball)
84
85 *.o: para.h config.h gcc-compat.h
86
87 include Makefile.deps
88 include $(ggo_dir)/makefile
89
90 %_command_list.c %_command_list.h: %.cmd
91         ./command_util.sh c < $< >$@
92         ./command_util.sh h < $< >$(@:%.c=%.h)
93
94 %_command_list.man: %.cmd
95         ./command_util.sh man < $< > $@
96
97 server_command_lists = server_command_list.man afs_command_list.man
98 man/man1/para_server.1: para_server $(server_command_lists)
99         mkdir -p man/man1
100         opts="-h --detailed-help -N `for i in $(server_command_lists); do printf "%s\n" "-i $$i"; done`"; \
101         help2man $$opts ./para_server > $@
102
103 man/man1/para_audiod.1: para_audiod audiod_command_list.man
104         mkdir -p man/man1
105         help2man -h --detailed-help -N -i audiod_command_list.man ./para_audiod > $@
106
107 man/man1/%.1: %
108         mkdir -p man/man1
109         help2man -h --detailed-help -N ./$< > $@
110
111 man/html/%.html: man/man1/%.1
112         mkdir -p man/html
113         man2html $< > $@
114
115 web/%.man.in.html: man/man1/%.1
116         man2html $< | sed -e '/^<\/BODY>/,$$d' -e '1,/<\/HEAD><BODY>/d' > $@
117
118
119 oggdec_filter.o: oggdec_filter.c
120         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @oggvorbis_cppflags@ $<
121 ogg_afh.o: ogg_afh.c
122         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @oggvorbis_cppflags@ $<
123
124 mp3dec_filter.o: mp3dec_filter.c
125         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @mad_cppflags@ $<
126
127 aacdec_filter.o: aacdec_filter.c
128         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
129
130 aac_common.o: aac_common.c
131         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
132
133 aac_afh.o: aac_afh.c
134         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
135
136 %.cmdline.o: %.cmdline.c
137         $(CC) -c $(CPPFLAGS) $<
138
139 %.o: %.c
140         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) $<
141
142 para_recv: @recv_objs@
143         $(CC) $(LDFLAGS) @recv_objs@ -o $@ @recv_ldflags@
144
145 para_filter: @filter_objs@
146         $(CC) $(LDFLAGS) @filter_objs@ -o $@ @filter_ldflags@
147
148 para_client: @client_objs@
149         $(CC) $(LDFLAGS) -o $@ @client_objs@ @client_ldflags@
150
151 para_gui: @gui_objs@
152         $(CC) $(LDFLAGS) -o $@ @gui_objs@ -lncurses
153
154 para_audiod: @audiod_objs@
155         $(CC) $(LDFLAGS) -o $@ @audiod_objs@ @audiod_ldflags@
156
157 para_audioc: @audioc_objs@
158         $(CC) $(LDFLAGS) -o $@ @audioc_objs@ @audioc_ldflags@
159
160 para_fade: @fade_objs@
161         $(CC) $(LDFLAGS) -o $@ @fade_objs@
162
163 para_server: @server_objs@
164         $(CC) $(LDFLAGS) -o $@ @server_objs@  @server_ldflags@
165
166 para_fsck: @fsck_objs@
167         $(CC) $(LDFLAGS) -o $@ @fsck_objs@ @fsck_ldflags@
168
169 para_write: @write_objs@
170         $(CC) $(LDFLAGS) -o $@ @write_objs@ @write_ldflags@
171
172 para_afh: @afh_objs@
173         $(CC) $(LDFLAGS) -o $@ @afh_objs@ @afh_ldflags@
174
175 clean:
176         rm -f *.o $(BINARIES)
177         rm -rf man
178 distclean: clean
179         rm -f Makefile autoscan.log config.status config.log && \
180         rm -rf web/sync/* autom4te.cache aclocal.m4
181         rm -f GPATH GRTAGS GSYMS GTAGS
182
183 maintainer-clean: distclean
184         rm -f $(ggo_generated) *.tar.bz2 \
185                 config.h configure \
186                 config.h.in skencil/*.pdf skencil/*.ps
187         rm -f *_command_list.* *.man man/man1/*
188         rm -rf web_sync
189
190 install: all man
191         mkdir -p $(BINDIR) $(MANDIR)
192         $(install_sh) -s -m 755 $(BINARIES) $(BINDIR)
193         $(install_sh) -m 644 $(man_pages) $(MANDIR)
194         mkdir -p $(VARDIR) >/dev/null 2>&1 || true # not fatal, so don't complain
195
196 @PACKAGE_TARNAME@-$(PACKAGE_VERSION).tar.bz2: $(tarball_add)
197         rm -rf $(tarball_pfx).tar.bz2 $(tarball_pfx)
198         git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \
199                 | tar --delete $(tarball_delete) > $(tarball_pfx).tar
200         mkdir $(tarball_pfx)
201         cp -r $(tarball_add) $(tarball_pfx)
202         tar rf $(tarball_pfx).tar $(tarball_pfx)/*
203         rm -rf $(tarball_pfx)
204         bzip2 -9 $(tarball_pfx).tar
205         rm -f $(tarball_pfx).tar
206         ls -l $(tarball_pfx).tar.bz2
207 %.ps: %.sk
208         sk2ps $< > $@
209 %.pdf: %.ps
210         ps2pdf - - < $< > $@
211