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