File: Makefile.in

package info (click to toggle)
ffprobe 0.svn92-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 228 kB
  • ctags: 177
  • sloc: ansic: 1,181; perl: 306; sh: 187; makefile: 132
file content (30 lines) | stat: -rw-r--r-- 545 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
23
24
25
26
27
28
29
30
include ../Makedefs

# tranformation chain:
# texi - (texi2html) -> HTML
# texi - (texi2pod) -> pod - (pod2man) -> man
%.html: %.texi
	texi2html -monolithic -number $<

%.pod: %.texi
	./texi2pod.pl $< $@

%.1: %.pod
	pod2man --section=1 --center=" " --release=" " $< > $@

all: ffprobe.1 ffprobe.html

install: ffprobe.1
	$(INSTALL) -d "$(mandir)"
	$(INSTALL) -m 644 $< "$(mandir)"

uninstall :
	/bin/rm -f "$(mandir)/ffprobe.1"

clean:
	/bin/rm -f ffprobe.1 ffprobe.html ffprobe.pod

distclean: clean
	/bin/rm -f Makefile

realclean: distclean