all: muller

clean:
	rm -f muller

muller: muller.c
	gcc -Wall -std=gnu99 -o muller muller.c -lm
