all:
	gcc -g -o my_binary main.c
clean:
	if [ -r my_binary ]; then rm my_binary; done
