1 2 3 4 5 6 7 8 9 10
.PHONY: solve.c solve.o: solve.c @gcc -Ofast $+ -o $@ clean: @rm -f *.o run: solve.o @./solve.o