From: Andre Date: Sat, 27 Jan 2007 10:47:41 +0000 (+0100) Subject: Makefile.in: add targets for man page generation X-Git-Tag: v0.2.15~79 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=5374a3e6ebce7ec7ecc5e382e82a30870520f258 Makefile.in: add targets for man page generation --- diff --git a/Makefile.in b/Makefile.in index 6ff6a016..32e6422c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -COPYRIGHT = Copyright (c) 1997-2006 by Andre Noll +COPYRIGHT = Copyright (c) 1997-2007 by Andre Noll DISCLAIMER = This is free software with ABSOLUTELY NO WARRANTY. See COPYING for details. prefix = @prefix@ @@ -152,6 +152,26 @@ grab_client.cmdline.h grab_client.cmdline.c: grab_client.ggo ./command_util.sh c < $< >$@ ./command_util.sh h < $< >$(@:%.c=%.h) +%_command_list.man: %.cmd + ./command_util.sh man < $< > $@ + +server_command_lists = server_command_list.man random_selector_command_list.man \ + playlist_selector_command_list.man mysql_selector_command_list.man +man/man1/para_server.1: para_server $(server_command_lists) + opts="-N `for i in $(server_command_lists); do echo "-i $$i"; done`"; \ + help2man $$opts ./para_server > $@ + +man/man1/para_audiod.1: para_audiod audiod_command_list.man + help2man -N -i audiod_command_list.man ./para_audiod > $@ + +man/man1/%.1: % + help2man -N $< > $@ + +man/html/%.html: man/man1/%.1 + man2html $< > $@ + + + ortp_recv.o: ortp_recv.c $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) @ortp_cppflags@ $< @@ -229,8 +249,7 @@ para_krell.so: $(krell_objs) $(CC) -Wall -fPIC @GTK_CFLAGS@ krell.o -o $@ @GTK_LIBS@ -shared clean: - rm -f *.o $(BINARIES) *_command_list.* - + rm -f *.o $(BINARIES) distclean: clean rm -f Makefile autoscan.log config.status config.log && \ rm -rf web/sync/* autom4te.cache aclocal.m4 @@ -241,6 +260,8 @@ maintainer-clean: distclean $(grutatxt_html) ChangeLog* config.h configure \ config.h.in skencil/*.pdf skencil/*.ps rm -rf doc + rm -f *_command_list.* *.man man/man1/* man/html/* + install: all umask 022 && \