File: make-doc

package info (click to toggle)
gaby 2.0.2-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 6,148 kB
  • ctags: 3,101
  • sloc: ansic: 48,660; sh: 8,710; python: 1,161; makefile: 951; perl: 265; sed: 93; xml: 89; sql: 25
file content (27 lines) | stat: -rwxr-xr-x 318 bytes parent folder | download | duplicates (5)
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
#! /bin/sh

echo Making documention for locale \'$1\' ...

if [ ! -f gaby.sgml ]
then
	echo gaby.sgml not present !
	exit
fi

# this should be done by configure (as well as db2ps)
if [ ! `which db2html` ]
then
	echo db2html not found
	exit
fi


if [ -f ts$1 ]
then
	exit
fi

db2html gaby.sgml > /dev/null

touch ts$1