Add the new "year" mood method.
[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
60 BINARIES = para_server para_client para_audioc para_recv \
61         para_filter para_write para_afh @extra_binaries@
62 man_binaries := $(BINARIES)
63 man_pages := $(patsubst %, man/man1/%.1, $(man_binaries))
64 man_pages_in := $(patsubst %, web/%.man.in.html, $(man_binaries))
65
66 ggo_dir := ggo
67
68 m4_ggos := afh audioc audiod client filter gui recv server write
69 all_ggos := $(m4_ggos) dccp_recv oggdec_filter alsa_write oss_write fade http_recv \
70         osx_write udp_recv amp_filter compress_filter file_write \
71         mp3dec_filter
72 ggo_generated := $(addsuffix .cmdline.c, $(all_ggos)) $(addsuffix .cmdline.h, $(all_ggos)) \
73         $(addsuffix .ggo, $(addprefix $(ggo_dir)/,$(m4_ggos)))
74
75 autocrap := config.h.in configure
76 tarball_pfx := @PACKAGE_TARNAME@-$(PACKAGE_VERSION)
77 tarball_delete = web versions pics .changelog_before_cvs .changelog_cvs .gitignore
78 tarball_delete := $(patsubst %,$(tarball_pfx)/%,$(tarball_delete))
79 tarball_add := $(ggo_generated) $(autocrap)
80 tarball := @PACKAGE_TARNAME@-$(PACKAGE_VERSION).tar.bz2
81
82 .PHONY: clean distclean maintainer-clean install man tarball
83 all: $(BINARIES) $(man_pages)
84 man: $(man_pages)
85 tarball: $(tarball)
86
87 *.o: para.h config.h gcc-compat.h
88
89 include Makefile.deps
90 include $(ggo_dir)/makefile
91
92 %_command_list.c %_command_list.h: %.cmd
93         ./command_util.sh c < $< >$@
94         ./command_util.sh h < $< >$(@:%.c=%.h)
95
96 %_command_list.man: %.cmd
97         ./command_util.sh man < $< > $@
98
99 server_command_lists = server_command_list.man afs_command_list.man
100 man/man1/para_server.1: para_server $(server_command_lists)
101         mkdir -p man/man1
102         opts="-h --detailed-help -N `for i in $(server_command_lists); do printf "%s\n" "-i $$i"; done`"; \
103         help2man $$opts ./para_server > $@
104
105 man/man1/para_audiod.1: para_audiod audiod_command_list.man
106         mkdir -p man/man1
107         help2man -h --detailed-help -N -i audiod_command_list.man ./para_audiod > $@
108
109 man/man1/%.1: %
110         mkdir -p man/man1
111         help2man -h --detailed-help -N ./$< > $@
112
113 man/html/%.html: man/man1/%.1
114         mkdir -p man/html
115         man2html $< > $@
116
117 web/%.man.in.html: man/man1/%.1
118         man2html $< | sed -e '/^<\/BODY>/,$$d' -e '1,/<\/HEAD><BODY>/d' > $@
119
120
121 oggdec_filter.o: oggdec_filter.c
122         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @oggvorbis_cppflags@ $<
123 ogg_afh.o: ogg_afh.c
124         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @oggvorbis_cppflags@ $<
125
126 mp3dec_filter.o: mp3dec_filter.c
127         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @mad_cppflags@ $<
128
129 aacdec_filter.o: aacdec_filter.c
130         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
131
132 aac_common.o: aac_common.c
133         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
134
135 aac_afh.o: aac_afh.c
136         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @faad_cppflags@ $<
137
138 %.cmdline.o: %.cmdline.c
139         $(CC) -c $(CPPFLAGS) $<
140
141 %.o: %.c
142         $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) $<
143
144 para_recv: @recv_objs@
145         $(CC) $(LDFLAGS) @recv_objs@ -o $@ @recv_ldflags@
146
147 para_filter: @filter_objs@
148         $(CC) $(LDFLAGS) @filter_objs@ -o $@ @filter_ldflags@
149
150 para_client: @client_objs@
151         $(CC) $(LDFLAGS) -o $@ @client_objs@ @client_ldflags@
152
153 para_gui: @gui_objs@
154         $(CC) $(LDFLAGS) -o $@ @gui_objs@ -lncurses
155
156 para_audiod: @audiod_objs@
157         $(CC) $(LDFLAGS) -o $@ @audiod_objs@ @audiod_ldflags@
158
159 para_audioc: @audioc_objs@
160         $(CC) $(LDFLAGS) -o $@ @audioc_objs@ @audioc_ldflags@
161
162 para_fade: @fade_objs@
163         $(CC) $(LDFLAGS) -o $@ @fade_objs@ @fade_ldflags@
164
165 para_server: @server_objs@
166         $(CC) $(LDFLAGS) -o $@ @server_objs@  @server_ldflags@
167
168 para_write: @write_objs@
169         $(CC) $(LDFLAGS) -o $@ @write_objs@ @write_ldflags@
170
171 para_afh: @afh_objs@
172         $(CC) $(LDFLAGS) -o $@ @afh_objs@ @afh_ldflags@
173
174 clean:
175         rm -f *.o $(BINARIES)
176         rm -f *_command_list.*
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 -rf web_sync
188
189 install: all man
190         mkdir -p $(BINDIR) $(MANDIR)
191         $(install_sh) -s -m 755 $(BINARIES) $(BINDIR)
192         $(install_sh) -m 644 $(man_pages) $(MANDIR)
193         mkdir -p $(VARDIR) >/dev/null 2>&1 || true # not fatal, so don't complain
194
195 @PACKAGE_TARNAME@-$(PACKAGE_VERSION).tar.bz2: $(tarball_add)
196         rm -rf $(tarball_pfx).tar.bz2 $(tarball_pfx)
197         git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \
198                 | tar --delete $(tarball_delete) > $(tarball_pfx).tar
199         mkdir $(tarball_pfx)
200         cp -r $(tarball_add) $(tarball_pfx)
201         tar rf $(tarball_pfx).tar $(tarball_pfx)/*
202         rm -rf $(tarball_pfx)
203         bzip2 -9 $(tarball_pfx).tar
204         rm -f $(tarball_pfx).tar
205         ls -l $(tarball_pfx).tar.bz2
206 %.ps: %.sk
207         sk2ps $< > $@
208 %.pdf: %.ps
209         ps2pdf - - < $< > $@
210