1 2 3 4 5 6 7 8 9 10 11
CC = gcc OPTS = -Wall -Wextra -pedantic FIN = g.c FOUT = g all: $(CC) $(OPTS) $(FIN) -o $(FOUT) clean: rm -v $(FOUT)