File: Makefile

package info (click to toggle)
torrus 1.0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,740 kB
  • ctags: 707
  • sloc: perl: 25,904; xml: 16,400; sh: 3,788; makefile: 603
file content (12 lines) | stat: -rw-r--r-- 328 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
htmldocs = $(patsubst %.pod, %.html, $(notdir $(wildcard ../../../doc/devdoc/*.pod)))

all: $(htmldocs)

clean:
	rm -f *~ *.tmp
	rm -f $(htmldocs)

%.html : ../../../doc/devdoc/%.pod
	pod2html --infile=$< --outfile=$@ \
		--htmlroot='file:///usr/share/doc/torrus-common' \
		--podroot='../../../doc/devdoc' --noindex -norecurse