doc/devmanual_fr/makefile
author Sandrine Ribeau <sandrine.ribeau@logilab.fr>
Tue, 11 Nov 2008 14:27:19 -0800
changeset 22 50f20cf0f440
parent 0 b97547f5f1fa
permissions -rw-r--r--
Merged chap_fondements_cubicweb and chap_bases_framework_cubicweb as they were both describing differents aspects of CubicWeb framework. Replaced original content of mise_en_place_environemment that was by mistake erased and replaced with chap_migration content.

MKHTMLOPTS=--doctype book --param toc.section.depth=1  --target html --stylesheet standard 
SRC=.

MKPDFOPTS=--doctype book --param toc.section.depth=2  --target pdf --stylesheet standard

TXTFILES:= $(wildcard *.txt)
TARGET := $(TXTFILES:.txt=.html)

all: index.html

index.html: *.txt
	mkdoc ${MKHTMLOPTS} index.txt

index.pdf: *.txt
	mkdoc ${MKPDFOPTS} index.txt

%.html: %.txt
	mkdoc ${MKHTMLOPTS} $<

clean:
	rm -f *.html