CC = gcc -Wall PROG = celsius2 $(PROG): celsius2.c $(CC) $< -o $@ all: clean $(PROG) run clean: @rm -f $(PROG) run: ./$(PROG)