#!/bin/make -f
##############################################################################
all : ut-demo1 ut-demo2 microthreads.html
##############################################################################
CFLAGS:=-Wall -ansi -pedantic
##############################################################################
%.html : %.txt
	asciidoc -b html4 -d book $^

%.xml : %.txt
	asciidoc -b docbook -d book $^

clean-all :
	$(RM) ut-demo1 ut-demo2 *~
