File: makefile

package info (click to toggle)
xmldiff 0.6.10-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 472 kB
  • ctags: 280
  • sloc: python: 1,989; ansic: 257; xml: 202; sh: 108; makefile: 75
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