goa/doc/devmanual_fr/makefile
brancholdstable
changeset 6665 90f2f20367bc
parent 6018 f4d1d5d9ccbb
parent 6661 1719137de7da
child 6701 fd4267ecbba6
child 6710 a89dc08e5970
equal deleted inserted replaced
6018:f4d1d5d9ccbb 6665:90f2f20367bc
     1 MKHTMLOPTS=--doctype book --param toc.section.depth=1  --target html --stylesheet single-file
       
     2 SRC=.
       
     3 
       
     4 MKPDFOPTS=--doctype book --param toc.section.depth=2  --target pdf --stylesheet standard
       
     5 
       
     6 TXTFILES:= $(wildcard *.txt)
       
     7 TARGET := $(TXTFILES:.txt=.html)
       
     8 
       
     9 all: index.html
       
    10 
       
    11 index.html: *.txt
       
    12 	mkdoc ${MKHTMLOPTS} index.txt
       
    13 
       
    14 index.pdf: *.txt
       
    15 	mkdoc ${MKPDFOPTS} index.txt
       
    16 
       
    17 %.html: %.txt
       
    18 	mkdoc ${MKHTMLOPTS} $<
       
    19 
       
    20 clean:
       
    21 	rm -f *.html