.PHONY: all
all: hellofft

hellofft: hellofft.c
	gcc -g -o hellofft hellofft.c -lm

.PHONY: clean
clean:
	rm -f hellofft

