# Since this library is so small and easy to build, it seems silly to
# bother.  Instead, I suggest that whoever wants to use it just add
# the files they need to the rest of their program's source.

all: avl.info avl.text avl.html

avl.info: avl.texinfo
	makeinfo avl.texinfo

avl.text: avl.texinfo
	makeinfo avl.texinfo -o avl.text --no-headers

avl.html: avl.texinfo
	texi2html -monolithic avl.texinfo

clean:
	rm -f *~

distclean: clean
	rm -f *.o avl avlt avltr avl-test avlt-test avltr-test thread-test

maintainer-clean: distclean
	rm -f avl.info avl.text
