File: Makefile.am

package info (click to toggle)
syslog-ng 2.0.0-1etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,844 kB
  • ctags: 2,014
  • sloc: ansic: 9,125; xml: 2,125; sh: 1,210; yacc: 741; lex: 278; makefile: 191; awk: 94; python: 85; perl: 49
file content (24 lines) | stat: -rw-r--r-- 833 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

EXTRA_DIST =  man/syslog-ng.8 man/syslog-ng.conf.5 \
	security/bof-2002-09-27.txt \
	security/dos-2000-11-22.txt \
	reference/syslog-ng.html.tar.gz \
	reference/syslog-ng.xml \
	reference/syslog-ng.txt \
	reference/syslog-ng.xsl \
	examples/syslog-ng.conf.sample \
	examples/syslog-ng.conf.solaris

man_MANS = man/syslog-ng.8 man/syslog-ng.conf.5

reference/syslog-ng.html.tar.gz: reference/syslog-ng.xml docvars.xml
	(set -e; 						\
	mkdir reference || /bin/true;				\
	xsltproc --nonet --path $(top_builddir)/doc -o reference/syslog-ng.html/index.html 	\
		$(top_srcdir)/doc/reference/syslog-ng.xsl 	\
		$(top_srcdir)/doc/reference/syslog-ng.xml;	\
	cd reference; 						\
	tar cfz syslog-ng.html.tar.gz syslog-ng.html)

reference/syslog-ng.txt: reference/syslog-ng.html.tar.gz
	w3m -dump reference/syslog-ng.html/index.html > $@