~eugenenuke/ubuntu/wily/console-setup/fix-for-1565542

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
SHELL=bash
name=console-setup

$(name).html/: $(name).sgml
	debiandoc2html $(name).sgml

%.txt: %.sgml
	debiandoc2text $<

%.pdf: %.sgml
	debiandoc2pdf $<

%.dvi: %.sgml
	debiandoc2dvi $<

%.info: %.sgml
	debiandoc2info $<

%.ps: %.sgml
	debiandoc2ps $<

%.tov: %.sgml
	debiandoc2textov $<

clean:
	rm -rf $(name).html
	rm -f $(name).txt $(name).pdf $(name).dvi $(name).info $(name).ps $(name).tov
	rm -f *~