hitomi: hitomi.c
	gcc -Wall -ansi -O3 -fexpensive-optimizations -finline-functions $< -o $@

huffman: c0.c
	gcc -Wall -ansi -pedantic $< -o $@

clean:
	-rm -f huffman hitomi
	-rm -f hhenc.h hhenc.lst hhdec.lst
	-rm -f core

backup:
	-rm -f backup.tar.gz
	tar cf backup.tar *.c *.txt Makefile
	gzip -9 backup.tar
