File: Makefile

package info (click to toggle)
pwdb 0.54preD-3
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 644 kB
  • ctags: 797
  • sloc: ansic: 8,459; makefile: 346; sh: 204
file content (16 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

all: pwdb.html pwdb.txt pwdb.ps

pwdb.html: pwdb.sgml
	sgml2html pwdb.sgml
	if [ ! -d ./html ]; then mkdir -p ./html ; fi
	mv *.html html

pwdb.txt: pwdb.sgml
	sgml2txt pwdb.sgml

pwdb.ps: pwdb.sgml
	sgml2latex --output=ps pwdb.sgml

clean:
	rm *~ -rf html *.txt *.ps