File: Makefile

package info (click to toggle)
torrus 3.00-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 4,548 kB
  • sloc: perl: 34,614; xml: 20,934; sh: 3,650; makefile: 713
file content (15 lines) | stat: -rw-r--r-- 365 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
htmldocs = $(patsubst %.pod, %.html, $(notdir $(wildcard ../../doc/*.pod)))

all: $(htmldocs)
	cd devdoc && $(MAKE)
clean:
	rm -f *~ *.tmp
	rm -f $(htmldocs)
	cd devdoc && $(MAKE) clean

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

.PHONY: all clean