1 2 3 4 5 6 7 8 9 10 11
CFLAGS ?= -Wall -Wextra .PHONY: all clean all: hello hello: main.c include/greeting.h @$(CC) $(CFLAGS) main.c -o $@ clean: $(RM) hello