File: Makefile.am

package info (click to toggle)
telepathy-salut 0.3.3-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,344 kB
  • ctags: 4,342
  • sloc: ansic: 39,187; sh: 9,058; python: 1,243; xml: 736; makefile: 556
file content (22 lines) | stat: -rw-r--r-- 491 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
tools_dir = $(top_srcdir)/tools

man_MANS = telepathy-salut.8
html_DATA = clique.html

EXTRA_DIST = \
    $(man_MANS:.8=.8.in) \
    $(html_DATA:.html=.xml)

CLEANFILES = \
    $(man_MANS) \
    $(html_DATA)

%.8: %.8.in Makefile
	sed -e 's,[@]libexecdir[@],@libexecdir@,' < $< > $@

$(html_DATA): %.html: %.xml $(tools_dir)/xep.xsl
	$(XSLTPROC) $(tools_dir)/xep.xsl $< > $@

proto-xep-upload: $(html_DATA)
	rsync -P $(html_DATA) people.collabora.co.uk:public_html/
.PHONY: proto-xep-upload