d8b82e60d61b6c9bcc66dd9d539811505573e411
[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 := simultaneous independence
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 += -fno-strict-aliasing
54 CPPFLAGS += -DMAIN_INPUT_FILE_IS_$(*F)
55 CPPFLAGS += @SSL_CPPFLAGS@
56 CPPFLAGS += @ncurses_cppflags@
57 CPPFLAGS += @arch_cppflags@
58 CPPFLAGS += -I/usr/local/include
59 CPPFLAGS += @osl_cppflags@
60
61 BINARIES = para_server para_client para_audioc para_recv \
62         para_filter para_write para_afh @extra_binaries@
63 man_binaries := $(BINARIES)
64 man_pages := $(patsubst %, man/man1/%.1, $(man_binaries))
65 man_pages_in := $(patsubst %, web/%.man.in.html, $(man_binaries))
66
67 ggo_dir := ggo
68
69 m4_ggos := afh audioc audiod client filter gui recv server write
70 all_ggos := $(m4_ggos) dccp_recv oggdec_filter alsa_write oss_write fade http_recv \
71         osx_write udp_recv amp_filter compress_filter file_write \
72         mp3dec_filter
73 ggo_generated := $(addsuffix .cmdline.c, $(all_ggos)) $(addsuffix .cmdline.h, $(all_ggos)) \
74         $(addsuffix .ggo, $(addprefix $(ggo_dir)/,$(m4_ggos)))
75
76 autocrap := config.h.in configure
77 tarball_pfx := @PACKAGE_TARNAME@-$(PACKAGE_VERSION)
78 tarball_delete = web versions pics .changelog_before_cvs .changelog_cvs .gitignore
79 tarball_delete := $(patsubst %,$(tarball_pfx)/%,$(tarball_delete))
80 tarball_add := $(ggo_generated) $(autocrap)
81 tarball := @PACKAGE_TARNAME@-$(PACKAGE_VERSION).tar.bz2
82
83 .PHONY: clean distclean maintainer-clean install man tarball
84 all: $(BINARIES) $(man_pages)
85 man: $(man_pages)
86 tarball: $(tarball)
87
88 *.o: para.h config.h gcc-compat.h
89
90 include Makefile.deps
91 include $(ggo_dir)/makefile
92
93 %_command_list.c %_command_list.h: %.cmd
94         ./command_util.sh c < $< >$@
95         ./command_util.sh h < $< >$(@:%.c=%.h)
96
97 %_command_list.man: %.cmd
98         ./command_util.sh man < $< > $@
99
100 server_command_lists = server_command_list.man afs_command_list.man
101 man/man1/para_server.1: para_server $(server_command_lists)
102         mkdir -p man/man1
103         opts="-h --detailed-help -N `for i in $(server_command_lists); do printf "%s\n" "-i $$i"; done`"; \
104         help2man $$opts ./para_server > $@
105
106 man/man1/para_audiod.1: para_audiod audiod_command_list.man
107         mkdir -p man/man1
108         help2man -h --detailed-help -N -i audiod_command_list.man ./para_audiod > $@
109
110 man/man1/%.1: %
111         mkdir -p man/man1
112         help2man -h --detailed-help -N ./$< > $@
113
114 man/html/%.html: man/man1/%.1
115         mkdir -p man/html
116         man2html $< > $@
117
118 web/%.man.in.html: man/man1/%.1
119         man2html $< | sed -e '/^<\/BODY>/,$$d' -e '1,/<\/HEAD><BODY>/d' > $@
120
121
122 oggdec_filter.o: oggdec_filter.c
123         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @oggvorbis_cppflags@ $<
124 ogg_afh.o: ogg_afh.c
125         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @oggvorbis_cppflags@ $<
126
127 mp3dec_filter.o: mp3dec_filter.c
128         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @mad_cppflags@ $<
129
130 aacdec_filter.o: aacdec_filter.c
131         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
132
133 aac_common.o: aac_common.c
134         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
135
136 aac_afh.o: aac_afh.c
137         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
138
139 %.cmdline.o: %.cmdline.c
140         $(CC) -c $(CPPFLAGS) $<
141
142 %.o: %.c
143         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) $<
144
145 para_recv: @recv_objs@
146         $(CC) $(LDFLAGS) @recv_objs@ -o $@ @recv_ldflags@
147
148 para_filter: @filter_objs@
149         $(CC) $(LDFLAGS) @filter_objs@ -o $@ @filter_ldflags@
150
151 para_client: @client_objs@
152         $(CC) $(LDFLAGS) -o $@ @client_objs@ @client_ldflags@
153
154 para_gui: @gui_objs@
155         $(CC) $(LDFLAGS) -o $@ @gui_objs@ -lncurses
156
157 para_audiod: @audiod_objs@
158         $(CC) $(LDFLAGS) -o $@ @audiod_objs@ @audiod_ldflags@
159
160 para_audioc: @audioc_objs@
161         $(CC) $(LDFLAGS) -o $@ @audioc_objs@ @audioc_ldflags@
162
163 para_fade: @fade_objs@
164         $(CC) $(LDFLAGS) -o $@ @fade_objs@ @fade_ldflags@
165
166 para_server: @server_objs@
167         $(CC) $(LDFLAGS) -o $@ @server_objs@  @server_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 -f *_command_list.*
178         rm -rf man
179 distclean: clean
180         rm -f Makefile autoscan.log config.status config.log && \
181         rm -rf web/sync/* autom4te.cache aclocal.m4
182         rm -f GPATH GRTAGS GSYMS GTAGS
183
184 maintainer-clean: distclean
185         rm -f $(ggo_generated) *.tar.bz2 \
186                 config.h configure \
187                 config.h.in skencil/*.pdf skencil/*.ps
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