CC = gcc CFLAGS = -Wall -std=c99 TARGET = hello build: $(CC) $(CFLAGS) -o $(TARGET) hello.c