make man dirs before calling help2man and friends
[paraslash.git] / Makefile.in
1 COPYRIGHT = Copyright (c) 1997-2007 by Andre Noll
2 DISCLAIMER = This is free software with ABSOLUTELY NO WARRANTY. See COPYING for details.
3
4 prefix = @prefix@
5 exec_prefix = @exec_prefix@
6
7 BINDIR = @bindir@
8 VARDIR = /var/paraslash
9 PKGDATADIR = @datarootdir@/@PACKAGE_NAME@
10 FONTDIR = $(PKGDATADIR)/fonts
11 PICDIR = $(PKGDATADIR)/pics
12 MANDIR = @datarootdir@/man/man1
13
14 install_sh = @install_sh@
15
16 build_date = $(shell date)
17 system = $(shell uname -rs)
18 cc_version = $(shell $(CC) --version | head -n 1)
19 codename = inductive resonance
20
21 DEBUG_CPPFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W
22 DEBUG_CPPFLAGS += -Wredundant-decls
23 # produces false positives
24 # DEBUG_CPPFLAGS += -Wunreachable-code
25 #CPPFLAGS += -Wwrite-strings
26 # invalid option for gcc-3.3.5
27 # CPPFLAGS += -Wextra
28
29 CPPFLAGS += -Os
30 CPPFLAGS += -Wall
31 CPPFLAGS += -Wuninitialized
32 CPPFLAGS += -Wstrict-prototypes
33 CPPFLAGS += -Wchar-subscripts
34 CPPFLAGS += -Wformat-security
35 CPPFLAGS += -DBINDIR='"$(BINDIR)"'
36 CPPFLAGS += -DFONTDIR='"$(PKGDATADIR)/fonts"'
37 CPPFLAGS += -DPICDIR='"$(PKGDATADIR)/pics"'
38 CPPFLAGS += -DBUILD_DATE='"$(build_date)"'
39 CPPFLAGS += -DSYSTEM='"$(system)"'
40 CPPFLAGS += -DCODENAME='"$(codename)"'
41 CPPFLAGS += -DCC_VERSION='"$(cc_version)"'
42 CPPFLAGS += -Werror-implicit-function-declaration
43 CPPFLAGS += -Wmissing-format-attribute
44 CPPFLAGS += -Wunused-macros
45 CPPFLAGS += -Wshadow
46
47 BINARIES = para_server para_client para_gui para_audioc para_recv \
48         para_filter para_write @extra_binaries@
49 man_binaries := para_server para_client para_gui para_audioc para_recv \
50         para_filter para_write  para_fade para_sdl_gui para_audiod
51 man_pages := $(patsubst %, man/man1/%.1, $(man_binaries))
52 man_pages_html := $(patsubst %, man/html/%.html, $(man_binaries))
53 FONTS := $(wildcard fonts/*.png)
54 PICS := $(wildcard pics/paraslash/*.jpg)
55 gengetopts := $(wildcard *.ggo)
56 gengetopts_c := $(gengetopts:.ggo=.cmdline.c)
57 gengetopts_h := $(gengetopts:.ggo=.cmdline.h)
58 all_c_files := $(wildcard *.c)
59 c_sources := $(filter-out $(gengetopts_c), $(all_c_files))
60 grutatxt := COPYING NEWS README.mysql CREDITS INSTALL README FEATURES GPL
61 grutatxt_html := $(grutatxt:=.html)
62 html_in := $(wildcard web/*.in.html)
63 gen_html := $(subst web/,web/sync/,$(html_in))
64 gen_html := $(gen_html:.in.html=.html)
65 gruta_in := $(grutatxt:=.in.html)
66 gruta_in := $(patsubst %,web/%,$(gruta_in))
67 gruta_html := $(grutatxt:=.html)
68 gruta_html := $(patsubst %,web/sync/%,$(gruta_html))
69 shots := gui-2005-11-12.png para_audiod-startup.txt para_krell-2005-02.png \
70         para_server-startup.txt para_slider-2004-12.png sdl_gui.jpg \
71         para_krell-2005-02.png
72 shots := $(patsubst %,web/sync/%,$(shots))
73 web_pics := web/sync/paraslash.png web/sync/paraslash.ico
74 web_misc := overview.pdf versions/paraslash-git.tar.bz2 PUBLIC_KEY \
75         key.anonymous para.css
76 web_misc := $(patsubst %,web/sync/%,$(web_misc))
77 web_man := web/sync/man
78 autocrap := config.h.in configure
79 tarball_pfx := @PACKAGE_TARNAME@-@PACKAGE_VERSION@
80 tarball_delete = web versions pics/screenshots pics/web .changelog_before_cvs \
81         .changelog_cvs
82 tarball_delete := $(patsubst %,$(tarball_pfx)/%,$(tarball_delete))
83 tarball_add := $(gengetopts_c) $(gengetopts_h) $(autocrap)
84
85 .PHONY: clean distclean maintainer-clean install html www tags doxygen gruta \
86         man html_man
87 all: $(BINARIES)
88 www: $(gen_html) $(gruta_html) $(web_pics) $(web_misc) $(shots) $(web_man) \
89         tags doxygen
90 gruta: $(gen_html) $(gruta_html)
91 man: $(man_pages)
92 html_man: $(man_pages_html)
93
94 sdl_gui_objs = sdl_gui.cmdline.o SFont.o sdl_gui.o gui_common.o exec.o \
95         close_on_fork.o string.o stat.o fd.o
96 dbadm_objs = dbadm.o exec.o close_on_fork.o string.o
97 fade_objs = fade.cmdline.o fade.o exec.o close_on_fork.o string.o fd.o
98 krell_objs = krell.o string.o
99 slider_objs = slider.o string.o
100
101 *.o: para.h config.h gcc-compat.h
102
103 include Makefile.deps
104
105 V := (@PACKAGE_STRING@, $(codename))\n$(COPYRIGHT)\n$(DISCLAIMER)
106 module_ggo_opts := --set-version="(@PACKAGE_STRING@, $(codename))"
107
108 grab_client.cmdline.h grab_client.cmdline.c: grab_client.ggo
109         gengetopt $(module_ggo_opts) \
110                 -S \
111                 --set-package=grab \
112                 --no-handle-help \
113                 --no-handle-error \
114                 --no-handle-version \
115                 --arg-struct-name=grab_client_args_info \
116                 --file-name=$(subst .ggo,,$<).cmdline \
117                 --func-name $(subst .ggo,,$<)_cmdline_parser < $<
118
119 %_recv.cmdline.h %_recv.cmdline.c: %_recv.ggo
120         gengetopt $(module_ggo_opts) \
121                 --set-package=$(subst .ggo,,$<) \
122                 --arg-struct-name=$(subst .ggo,,$<)_args_info \
123                 --file-name=$(subst .ggo,,$<).cmdline \
124                 --func-name $(subst .ggo,,$<)_cmdline_parser < $<
125
126 %_filter.cmdline.h %_filter.cmdline.c: %_filter.ggo
127         gengetopt $(module_ggo_opts) \
128                 --set-package=$(subst .ggo,,$<) \
129                 --arg-struct-name=$(subst .ggo,,$<)_args_info \
130                 --file-name=$(subst .ggo,,$<).cmdline \
131                 --func-name $(subst _filter.ggo,,$<)_cmdline_parser < $<
132 %_write.cmdline.h %_write.cmdline.c: %_write.ggo
133         gengetopt -S $(module_ggo_opts) \
134                 --set-package=$(subst .ggo,,$<) \
135                 --arg-struct-name=$(subst .ggo,,$<)_args_info \
136                 --file-name=$(subst .ggo,,$<).cmdline \
137                 --func-name $(subst _write.ggo,,$<)_cmdline_parser < $<
138
139 %.cmdline.h %.cmdline.c: %.ggo
140         case $< in client.ggo) O="--unamed-opts=command";; \
141                 audioc.ggo) O="--unamed-opts=command";; \
142         esac; \
143         gengetopt $$O \
144                 --conf-parser \
145                 --file-name=$(*F).cmdline \
146                 --func-name $(*F)_cmdline_parser \
147                 --arg-struct-name=$(*F)_args_info \
148                 --set-package="para_$(subst .cmdline,,$(*F))" \
149                 --set-version="$V"  < $<
150
151 %_command_list.c %_command_list.h: %.cmd
152         ./command_util.sh c < $< >$@
153         ./command_util.sh h < $< >$(@:%.c=%.h)
154
155 %_command_list.man: %.cmd
156         ./command_util.sh man < $< > $@
157
158 server_command_lists = server_command_list.man random_selector_command_list.man \
159         playlist_selector_command_list.man mysql_selector_command_list.man
160 man/man1/para_server.1: para_server $(server_command_lists)
161         mkdir -p man/man1
162         opts="-N `for i in $(server_command_lists); do echo "-i $$i"; done`"; \
163         help2man $$opts ./para_server > $@
164
165 man/man1/para_audiod.1: para_audiod audiod_command_list.man
166         mkdir -p man/man1
167         help2man -N -i audiod_command_list.man ./para_audiod > $@
168
169 man/man1/%.1: %
170         mkdir -p man/man1
171         help2man -N ./$< > $@
172
173 man/html/%.html: man/man1/%.1
174         mkdir -p man/html
175         man2html $< > $@
176
177
178
179 ortp_recv.o: ortp_recv.c
180         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @ortp_cppflags@ $<
181
182 ortp_send.o: ortp_send.c
183         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @ortp_cppflags@ $<
184
185 oggdec.o: oggdec.c
186         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @oggvorbis_cppflags@ $<
187 ogg_afh.o: ogg_afh.c
188         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @oggvorbis_cppflags@ $<
189
190 mp3dec.o: mp3dec.c
191         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @mad_cppflags@ $<
192
193 aacdec.o: aacdec.c
194         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
195
196 aac_common.o: aac_common.c
197         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
198
199 aac_afh.o: aac_afh.c
200         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
201
202 para_recv: @recv_objs@
203         $(CC) @recv_objs@ -o $@ @recv_ldflags@
204
205 slider.o: slider.c
206         $(CC) -c -Wall -o $@ -g @GLIB_CFLAGS@  @GTK_CFLAGS@ $<
207
208 krell.o: krell.c
209         $(CC) -Wall -O -g -fPIC @GTK_CFLAGS@ -c -o $@ krell.c
210
211 mysql_selector.o: mysql_selector.c
212         $(CC)  -Wall -O -g @mysql_cppflags@ -c -o $@ $<
213
214 %.cmdline.o: %.cmdline.c
215         $(CC) -c $(CPPFLAGS) $<
216 %.o: %.c
217         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) $<
218
219 para_filter: @filter_objs@
220         $(CC) @filter_objs@ -o $@ @filter_ldflags@
221
222 para_slider: $(slider_objs)
223         $(CC) $(slider_objs) -o $@ @GTK_LIBS@ @GLIB_LIBS@ -lzmw
224
225 para_client: @client_objs@
226         $(CC) -o $@ @client_objs@ @client_ldflags@
227
228 para_gui: @gui_objs@
229         $(CC) -o $@ @gui_objs@ -lncurses
230
231 para_audiod: @audiod_objs@
232         $(CC) -o $@ @audiod_objs@ @audiod_ldflags@
233
234 para_audioc: @audioc_objs@
235         $(CC) -o $@ @audioc_objs@
236
237 para_dbadm: $(dbadm_objs)
238         $(CC) -o $@ $(dbadm_objs) -lncurses -lmenu
239
240 para_fade: $(fade_objs)
241         $(CC) -o $@ $(fade_objs)
242
243 para_server: @server_objs@
244         $(CC) -o $@ @server_objs@  @server_ldflags@
245
246 para_sdl_gui: $(sdl_gui_objs)
247         $(CC) -o $@ $(sdl_gui_objs) -lSDL_image
248
249 para_write: @write_objs@
250         $(CC) -o $@ @write_objs@ @write_ldflags@
251
252 para_krell.so: $(krell_objs)
253         $(CC) -Wall -fPIC @GTK_CFLAGS@ krell.o -o $@ @GTK_LIBS@ -shared
254
255 clean:
256         rm -f *.o $(BINARIES)
257 distclean: clean
258         rm -f Makefile autoscan.log config.status config.log && \
259         rm -rf web/sync/* autom4te.cache aclocal.m4
260         rm -f GPATH GRTAGS GSYMS GTAGS
261
262 maintainer-clean: distclean
263         rm -f $(gengetopts_c) $(gengetopts_h) *.tar.bz2 \
264                 $(grutatxt_html) config.h configure \
265                 config.h.in skencil/*.pdf skencil/*.ps
266         rm -f *_command_list.* *.man man/man1/* man/html/*
267
268
269 install: all
270         mkdir -p $(BINDIR) $(FONTDIR) $(PICDIR) $(MANDIR) $(VARDIR)
271         $(install_sh) -s -m 755 $(BINARIES) $(BINDIR)
272         $(install_sh) -m 644 $(FONTS) $(FONTDIR)
273         $(install_sh) -m 644 $(PICS) $(PICDIR)
274         $(install_sh) -m 644 $(man_pages) $(MANDIR)
275
276 @PACKAGE_TARNAME@-@PACKAGE_VERSION@.tar.bz2: $(tarball_add) $(man_pages)
277         rm -rf $(tarball_pfx).tar.bz2 $(tarball_pfx)
278         git-archive --format=tar --prefix=$(tarball_pfx)/ HEAD \
279                 | tar --delete $(tarball_delete) > $(tarball_pfx).tar
280         mkdir $(tarball_pfx)
281         cp -r $(tarball_add) $(tarball_pfx)
282         mkdir -p $(tarball_pfx)/man/man1
283         cp -r $(man_pages) $(tarball_pfx)/man/man1
284         tar rf $(tarball_pfx).tar $(tarball_pfx)/*
285         rm -rf $(tarball_pfx)
286         bzip2 -9 $(tarball_pfx).tar
287         rm -f $(tarball_pfx).tar
288         ls -l $(tarball_pfx).tar.bz2
289
290 web/%.in.html: %
291         grutatxt -nb  < $< > $@
292 tags:
293         rm -rf web/sync/HTML && gtags && htags -nF && mv HTML web/sync
294 web/header2.html: web/header.html
295         sed -e 's|href="|href="\.\.\/\.\./|g' \
296                 -e 's|SRC="|SRC="\.\.\/\.\./|g' $< > $@
297 doxygen: web/header2.html
298         mkdir -p web/sync/doxygen
299         doxygen
300 web/sync/man: html_man
301         mkdir -p $@
302         cp -a $(man_pages_html) $@
303 web/sync/%.html: web/%.in.html web/header.html web/footer.html web/sync
304         cat web/header.html $< web/footer.html > $@
305 web/sync/%.png: pics/web/%.png web/sync
306         cp $< $@
307 web/sync/%.ico: pics/web/%.ico web/sync
308         cp $< $@
309 web/sync/para.css: web/para.css web/sync
310         cp $< $@
311 web/sync/versions/paraslash-git.tar.bz2: paraslash-git.tar.bz2 web/sync
312         cp -a versions web/sync && cp $< $@
313 web/sync/overview.pdf: skencil/overview.pdf web/sync
314         cp $< $@
315 web/sync/%: %
316         cp -a $< $@
317 web/sync/%: pics/screenshots/%
318         cp $< $@
319 skencil/%.ps: skencil/%.sk
320         sk2ps $< > $@
321 %.pdf: %.ps
322         ps2pdf - - < $< > $@