2 exec_prefix = @
exec_prefix@
5 VARDIR
= /var
/paraslash
6 PKGDATADIR
= @datarootdir@
/@PACKAGE_NAME@
7 MANDIR
= @datarootdir@
/man
/man1
9 install_sh
= @install_sh@
11 build_date
= $(shell date
)
12 system
= $(shell uname
-rs
)
13 cc_version
= $(shell $(CC
) --version | head
-n
1)
14 codename
= isotropic threshold
16 DEBUG_CPPFLAGS
+= -Wno-sign-compare
-g
-Wunused
-Wundef
-W
17 DEBUG_CPPFLAGS
+= -Wredundant-decls
18 # produces false positives
19 # DEBUG_CPPFLAGS += -Wunreachable-code
20 # DEBUG_CPPFLAGS += -Wwrite-strings
22 # invalid option for gcc-3.3.3
23 # DEBUG_CPPFLAGS += -Wextra
24 # DEBUG_CPPFLAGS += -Wold-style-definition
26 # many warnings about trivial stuff
27 # CPPFLAGS += -Wconversion
29 LDFLAGS
+= -Wl
,--gc-sections
33 CPPFLAGS
+= -Wuninitialized
34 CPPFLAGS
+= -Wstrict-prototypes
35 CPPFLAGS
+= -Wchar-subscripts
36 CPPFLAGS
+= -Wformat-security
37 CPPFLAGS
+= -DBINDIR
='"$(BINDIR)"'
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
46 CPPFLAGS
+= -Wbad-function-cast
47 CPPFLAGS
+= -fdata-sections
-ffunction-sections
48 CPPFLAGS
+= -DMAIN_INPUT_FILE_IS_
$(*F
)
49 CPPFLAGS
+= @SSL_CPPFLAGS@
50 CPPFLAGS
+= @ncurses_cppflags@
52 BINARIES
= para_server para_client para_audioc para_recv \
53 para_filter para_write para_fsck @extra_binaries@
54 man_binaries
:= $(BINARIES
)
55 man_pages
:= $(patsubst %, man
/man1
/%.1, $(man_binaries
))
56 man_pages_html
:= $(patsubst %, man
/html
/%.html
, $(man_binaries
))
57 gengetopts
:= $(wildcard *.ggo
)
58 gengetopts_c
:= $(gengetopts
:.ggo
=.cmdline.c
)
59 gengetopts_h
:= $(gengetopts
:.ggo
=.cmdline.h
)
60 grutatxt
:= NEWS CREDITS INSTALL README FEATURES REQUIREMENTS README.afs
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_server-startup.txt
70 shots
:= $(patsubst %,web
/sync
/%,$(shots
))
71 web_pics
:= web
/sync
/paraslash.png web
/sync
/paraslash.ico
72 web_misc
:= overview.pdf versions
/@PACKAGE_TARNAME@
-@PACKAGE_VERSION@.
tar.bz2 PUBLIC_KEY \
73 key.anonymous para.css
74 web_misc
:= $(patsubst %,web
/sync
/%,$(web_misc
))
75 web_man
:= web
/sync
/man
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
:= $(gengetopts_c
) $(gengetopts_h
) $(autocrap
)
82 .PHONY
: clean distclean maintainer-clean
install html www
tags doxygen gruta \
85 www
: $(gen_html
) $(gruta_html
) $(web_pics
) $(web_misc
) $(shots
) $(web_man
) \
87 gruta
: $(gen_html
) $(gruta_html
)
89 html_man
: $(man_pages_html
)
91 fade_objs
= fade.cmdline.o fade.o exec.o close_on_fork.o string.o fd.o
92 fsck_objs
= osl.o rbtree.o fsck.o string.o sha1.o fsck.cmdline.o
94 *.o
: para.h config.h gcc-compat.h
98 module_ggo_opts
:= --set-version
="(@PACKAGE_STRING@, $(codename))"
100 grab_client.cmdline.h grab_client.cmdline.c
: grab_client.ggo
101 gengetopt
$(module_ggo_opts
) \
106 --no-handle-version \
107 --arg-struct-name
=grab_client_args_info \
108 --file-name
=$(subst .ggo
,,$<).cmdline \
109 --func-name
$(subst .ggo
,,$<)_cmdline_parser
< $<
111 %_recv.cmdline.h
%_recv.cmdline.c
: %_recv.ggo
112 gengetopt
$(module_ggo_opts
) \
113 --set-package
=$(subst .ggo
,,$<) \
114 --arg-struct-name
=$(subst .ggo
,,$<)_args_info \
115 --file-name
=$(subst .ggo
,,$<).cmdline \
116 --func-name
$(subst .ggo
,,$<)_cmdline_parser
< $<
118 %_filter.cmdline.h
%_filter.cmdline.c
: %_filter.ggo
119 gengetopt
$(module_ggo_opts
) \
120 --set-package
=$(subst .ggo
,,$<) \
121 --arg-struct-name
=$(subst .ggo
,,$<)_args_info \
122 --file-name
=$(subst .ggo
,,$<).cmdline \
123 --func-name
$(subst _filter.ggo
,,$<)_cmdline_parser
< $<
124 %_write.cmdline.h
%_write.cmdline.c
: %_write.ggo
125 gengetopt
-S
$(module_ggo_opts
) \
126 --set-package
=$(subst .ggo
,,$<) \
127 --arg-struct-name
=$(subst .ggo
,,$<)_args_info \
128 --file-name
=$(subst .ggo
,,$<).cmdline \
129 --func-name
$(subst _write.ggo
,,$<)_cmdline_parser
< $<
131 %.cmdline.h
%.cmdline.c
: %.ggo
132 case
$< in client.ggo
) O
="--unamed-opts=command";; \
133 audioc.ggo
) O
="--unamed-opts=command";; \
134 fsck.ggo
) O
="--unamed-opts=table";; \
136 echo
"$O"; if
test $< != fsck.ggo
; then O
="$$O --conf-parser "; fi
; \
138 --no-handle-version \
139 --file-name
=$(*F
).cmdline \
140 --func-name
$(*F
)_cmdline_parser \
141 --arg-struct-name
=$(*F
)_args_info \
142 --set-package
="para_$(subst .cmdline,,$(*F))" \
143 --set-version
="@PACKAGE_VERSION@" < $<
145 %_command_list.c
%_command_list.h
: %.cmd
146 .
/command_util.sh c
< $< >$@
147 .
/command_util.sh h
< $< >$(@
:%.c
=%.h
)
149 %_command_list.man
: %.cmd
150 .
/command_util.sh man
< $< > $@
152 server_command_lists
= server_command_list.man afs_command_list.man
153 man
/man1
/para_server
.1: para_server
$(server_command_lists
)
155 opts
="-N `for i in $(server_command_lists); do echo "-i
$$i"; done`"; \
156 help2man
$$opts .
/para_server
> $@
158 man
/man1
/para_audiod
.1: para_audiod audiod_command_list.man
160 help2man
-N
-i audiod_command_list.man .
/para_audiod
> $@
164 help2man
-N .
/$< > $@
166 man
/html
/%.html
: man
/man1
/%.1
172 ortp_recv.o
: ortp_recv.c
173 $(CC
) -c
$(CPPFLAGS
) $(DEBUG_CPPFLAGS
) @ortp_cppflags@
$<
175 ortp_send.o
: ortp_send.c
176 $(CC
) -c
$(CPPFLAGS
) $(DEBUG_CPPFLAGS
) @ortp_cppflags@
$<
179 $(CC
) -c
$(CPPFLAGS
) $(DEBUG_CPPFLAGS
) @oggvorbis_cppflags@
$<
181 $(CC
) -c
$(CPPFLAGS
) $(DEBUG_CPPFLAGS
) @oggvorbis_cppflags@
$<
184 $(CC
) -c
$(CPPFLAGS
) $(DEBUG_CPPFLAGS
) @mad_cppflags@
$<
187 $(CC
) -c
$(CPPFLAGS
) $(DEBUG_CPPFLAGS
) @faad_cppflags@
$<
189 aac_common.o
: aac_common.c
190 $(CC
) -c
$(CPPFLAGS
) $(DEBUG_CPPFLAGS
) @faad_cppflags@
$<
193 $(CC
) -c
$(CPPFLAGS
) $(DEBUG_CPPFLAGS
) @faad_cppflags@
$<
195 %.cmdline.o
: %.cmdline.c
196 $(CC
) -c
$(CPPFLAGS
) $<
199 $(CC
) -c
$(CPPFLAGS
) $(DEBUG_CPPFLAGS
) $<
201 para_recv
: @recv_objs@
202 $(CC
) $(LDFLAGS
) @recv_objs@
-o
$@ @recv_ldflags@
204 para_filter
: @filter_objs@
205 $(CC
) $(LDFLAGS
) @filter_objs@
-o
$@ @filter_ldflags@
207 para_client
: @client_objs@
208 $(CC
) $(LDFLAGS
) -o
$@ @client_objs@ @client_ldflags@
211 $(CC
) $(LDFLAGS
) -o
$@ @gui_objs@
-lncurses
213 para_audiod
: @audiod_objs@
214 $(CC
) $(LDFLAGS
) -o
$@ @audiod_objs@ @audiod_ldflags@
216 para_audioc
: @audioc_objs@
217 $(CC
) $(LDFLAGS
) -o
$@ @audioc_objs@ @audioc_ldflags@
219 para_fade
: $(fade_objs
)
220 $(CC
) $(LDFLAGS
) -o
$@
$(fade_objs
)
222 para_server
: @server_objs@
223 $(CC
) $(LDFLAGS
) -o
$@ @server_objs@ @server_ldflags@
225 para_fsck
: @fsck_objs@
226 $(CC
) $(LDFLAGS
) -o
$@ @fsck_objs@ @fsck_ldflags@
228 para_write
: @write_objs@
229 $(CC
) $(LDFLAGS
) -o
$@ @write_objs@ @write_ldflags@
232 rm -f
*.o
$(BINARIES
)
234 rm -f Makefile autoscan.log config.status config.log
&& \
235 rm -rf web
/sync
/* autom4te.cache aclocal.m4
236 rm -f GPATH GRTAGS GSYMS GTAGS
238 maintainer-clean
: distclean
239 rm -f
$(gengetopts_c
) $(gengetopts_h
) *.
tar.bz2 \
240 $(grutatxt_html
) config.h configure \
241 config.h.in skencil
/*.pdf skencil
/*.ps
242 rm -f
*_command_list.
* *.man man
/man1
/* man
/html
/*
246 mkdir
-p
$(BINDIR
) $(MANDIR
)
247 $(install_sh
) -s
-m
755 $(BINARIES
) $(BINDIR
)
248 $(install_sh
) -m
644 $(man_pages
) $(MANDIR
)
249 mkdir
-p
$(VARDIR
) >/dev
/null
2>&1 || true
# not fatal, so don't complain
251 @PACKAGE_TARNAME@
-@PACKAGE_VERSION@.
tar.bz2
: $(tarball_add
) $(man_pages
)
252 rm -rf
$(tarball_pfx
).
tar.bz2
$(tarball_pfx
)
253 git-archive
--format
=tar --prefix=$(tarball_pfx
)/ HEAD \
254 |
tar --delete
$(tarball_delete
) > $(tarball_pfx
).
tar
256 cp
-r
$(tarball_add
) $(tarball_pfx
)
257 mkdir
-p
$(tarball_pfx
)/man
/man1
258 cp
-r
$(man_pages
) $(tarball_pfx
)/man
/man1
259 tar rf
$(tarball_pfx
).
tar $(tarball_pfx
)/*
260 rm -rf
$(tarball_pfx
)
261 bzip2
-9 $(tarball_pfx
).
tar
262 rm -f
$(tarball_pfx
).
tar
263 ls
-l
$(tarball_pfx
).
tar.bz2
266 grutatxt
-nb
< $< > $@
268 rm -rf web
/sync
/HTML
&& gtags
&& htags
-nF
&& mv HTML web
/sync
269 web
/header2.html
: web
/header.html
270 sed
-e
's|href="|href="\.\.\/\.\./|g' \
271 -e
's|SRC="|SRC="\.\.\/\.\./|g' $< > $@
272 doxygen
: web
/header2.html
273 mkdir
-p web
/sync
/doxygen
275 web
/sync
/man
: html_man
277 cp
-a
$(man_pages_html
) $@
278 web
/sync
/%.html
: web
/%.in.html web
/header.html web
/footer.html web
/sync
279 cat web
/header.html
$< web
/footer.html
> $@
280 web
/sync
/%.png
: pics
/web
/%.png web
/sync
282 web
/sync
/%.ico
: pics
/web
/%.ico web
/sync
284 web
/sync
/para.css
: web
/para.css web
/sync
286 web
/sync
/versions
/@PACKAGE_TARNAME@
-@PACKAGE_VERSION@.
tar.bz2
: @PACKAGE_TARNAME@
-@PACKAGE_VERSION@.
tar.bz2 web
/sync
287 cp
-a versions web
/sync
&& cp
$< $@
288 web
/sync
/overview.pdf
: skencil
/overview.pdf web
/sync
292 web
/sync
/%: pics
/screenshots
/%
294 skencil
/%.ps
: skencil
/%.sk