CC ?= gcc CFLAGS ?= -g -Wall -Wextra .PHONY: all clean all: fizzbuzz fizzbuzz: fizzbuzz.c $(CC) $(CFLAGS) -o $@ $^ clean: @$(RMF) fizzbuzz