# Makefile - Don Yang (uguu.org)
#
# 01/10/02


target = inuyasha

all: $(target)

$(target): inuyasha.ml
	ocamlopt $< -o $@

clean:
	-rm -f $(target) *.cm* *.o

backup:
	-rm -f backup.tar.gz
	tar cf backup.tar *.ml *.ps Makefile makefile.w32
	gzip -9 backup.tar
