File: Makefile

package info (click to toggle)
tkdesk 2.0-12
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 6,596 kB
  • sloc: tcl: 20,764; ansic: 16,262; sh: 359; makefile: 233
file content (22 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# This Makefile is to generate ASCII text, HTML, and PostScript versions
# of the SGML source of the TkDesk User's Guide.  You will need the 
# LinuxDoc-SGML tools to run this yourself (linuxdoc*.rpm, or something
# similar).
#

OUTS = guide.txt guide.html guide.ps

all: $(OUTS)

guide.txt: guide.sgml
	sgml2txt -f guide.sgml

guide.html: guide.sgml
	sgml2html guide.sgml

guide.ps: guide.sgml
	sgml2latex --output=ps --papersize=a4 guide.sgml

clean:
	rm -f $(OUTS)