all: hello celsius

clean:
	rm -f hello celsius

hello: hello.c
	gcc -o hello hello.c
	
celsius: celsius.c
	gcc -o celsius celsius.c
