target = bell

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


$(target): $(target).o
	gcc $(target).o -o $@

$(target).o: $(target).c


clean:
	-rm -f *.o

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