TARGET = main SRC = main.c CCFLAGS = -Wall -std=c99 all: $(TARGET) $(TARGET): $(SRC) gcc -o $(TARGET) $(SRC) $(CCFLAGS) clean: rm -f $(TARGET)