File: makefile

package info (click to toggle)
xmldiff 0.6.8-4.2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 520 kB
  • ctags: 301
  • sloc: python: 2,000; ansic: 257; xml: 202; sh: 108; makefile: 70
file content (16 lines) | stat: -rw-r--r-- 300 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
MKHTML=mkdoc
MKHTML_OPT=--doctype article --param toc.section.depth=1  --target html --stylesheet single-file

SRC=.


all: HELP.html API.html

HELP.html: ${SRC}/HELP.txt
	${MKHTML} ${MKHTML_OPT} ${SRC}/HELP.txt

API.html: ${SRC}/API.txt
	${MKHTML} ${MKHTML_OPT} ${SRC}/API.txt

clean:
	rm -f *.html