Makefile
changeset 6 4779d7083767
child 10 905843405257
equal deleted inserted replaced
5:2994ba652074 6:4779d7083767
       
     1 TXT = abstract.txt
       
     2 HTML = out/abstract.html
       
     3 
       
     4 REVISION = ${shell hg id -tibB}
       
     5 DATE = ${shell date -I}
       
     6 
       
     7 
       
     8 .PHONY:	all clean
       
     9 
       
    10 all:	${HTML}
       
    11 clean:	; rm -f ${HTML}
       
    12 
       
    13 out/%.html:		%.txt
       
    14 		@mkdir -p ${dir $@}
       
    15 		asciidoc -a revision="${REVISION}" -a date="${DATE}" -o $@ $<