File: Makefile.sgml

package info (click to toggle)
gtk%2B 1%3A1.0.4-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 6,756 kB
  • ctags: 9,201
  • sloc: ansic: 89,322; sh: 2,010; makefile: 703; lisp: 109; awk: 9; perl: 6
file content (40 lines) | stat: -rw-r--r-- 695 bytes parent folder | download | duplicates (4)
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
31
32
33
34
35
36
37
38
39
40
#
# To use this makefile, do:
# make -f Makefile.gtkfaq
#
# This is not done by default because you might
# not have sgml2html installed... Perhaps we could
# detect that in the future and combine it in with
# the automake stuff...
#

all: html ps

html: faq tut italian_tut
	perl gtkdocs_fix gtkfaq*.html gtk_tut*.html

txt:
	sgml2txt gtkfaq.sgml
	sgml2txt gtk_tut.sgml
	sgml2txt gtk_tut_it.sgml

ps: dvi
	dvips -o gtkfaq.ps gtkfaq.dvi
	dvips -o gtk_tut.ps gtk_tut.dvi
	dvips -o gtk_tut_it.ps gtk_tut_it.dvi

dvi: 
	sgml2latex gtkfaq.sgml
	sgml2latex gtk_tut.sgml
	sgml2latex gtk_tut_it.sgml

faq:
	sgml2html gtkfaq.sgml

tut:
	sgml2html gtk_tut.sgml

italian_tut:
	sgml2html gtk_tut_it.sgml