File: Makefile

package info (click to toggle)
configlet 1.8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,044 kB
  • ctags: 211
  • sloc: python: 1,417; xml: 709; makefile: 139; sh: 44
file content (41 lines) | stat: -rw-r--r-- 725 bytes parent folder | download
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
# $Progeny: Makefile,v 1.20 2002/01/18 06:19:44 dsp Exp $

doctools=../../doctools

XML_FILES=	\
		architecture.xml \
		book.xml \
		configlet.xml \
		frontend.xml \
		introduction.xml

XSL_FILES=	configlet-local.xsl

IGNOREFILES=	*.html book.ps book.pdf book.txt

HTML_SS_XSL=	configlet-local.xsl

all: .cvsignore api/index.html book.html book.txt

api/index.html: ../../configlet.py
	happydoc -d api ../../configlet.py

book1.html: ${XML_FILES}
	$(call chunk_html,book.xml)

book.html: ${XML_FILES}
book.pdf: ${XML_FILES}
book.ps: ${XML_FILES}

validate:
	$(call validate,book.xml)

clean:


maintainer-clean:
	rm -rf *.html *.ps *.pdf *.txt api

.PHONY: all validate clean maintainer-clean

include ${doctools}/docbook.mk