# Makefile - Don Yang (uguu.org)
#
# 09/11/04


targets = bfc break70 cat encodetext hello stripcomments

all: $(targets)

bfc: bfc.c
	gcc $< -o $@

break70: break70.c
	gcc $< -o $@

cat: cat.c
	gcc $< -o $@

encodetext: encodetext.c
	gcc $< -o $@

hello: hello.c
	gcc $< -o $@

stripcomments: stripcomments.c
	gcc $< -o $@


clean:
	-rm -f $(targets)

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