File: Makefile.am

package info (click to toggle)
lifelines 3.0.50-2etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 11,160 kB
  • ctags: 6,517
  • sloc: ansic: 57,468; xml: 8,014; sh: 4,489; makefile: 848; yacc: 601; perl: 170; sed: 16
file content (45 lines) | stat: -rw-r--r-- 1,070 bytes parent folder | download | duplicates (2)
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
41
42
43
44
45
# This makefile creates the documentation directory

# AUTOMAKE_OPTIONS = no-dependencies

# obsolete manuals: quickref.pdf quickref.ps lifelines.sgml

MANUALSSRC = ll-reportmanual.xml ll-userguide.xml

MANUALS_en =     ll-reportmanual.html ll-reportmanual.pdf \
	     ll-reportmanual.txt listops.jpg \
	     ll-userguide.html ll-userguide.pdf \
	     ll-userguide.txt 

MANUALS_sv = ll-reportmanual.sv.html ll-userguide.sv.html

MANUALS = $(MANUALS_en) $(MANUALS_sv)

MANPAGES =   btedit.1 dbverify.1 llines.1

OLDGENFILES = lifelines.html lifelines.pdf lifelines.ps lifelines.txt

EXTRA_DIST = $(MANUALSSRC) $(MANUALS) $(MANPAGES)
man1_MANS = $(MANPAGES)

CONFIG_CLEAN_FILES = $(OLDGENFILES) $(MANUALS)

docdir = $(datadir)/doc/lifelines
doc_DATA = $(MANUALSSRC) $(MANUALS) 
dist_pkgdata_DATA = $(MANUALS)


# sensible values: empty, simple, fancy
all: @DOCS_TARGET@

.xml.pdf:
	-jw -f docbook -b pdf $^

.xml.html:
	-jw -f docbook -b html -V nochunks $^

.html.txt:
	if [ -f /usr/bin/lynx ] ; then \
	/usr/bin/lynx -force_html -dump -nolist -width=76 $^ > $@ ;\
	fi