CC=gcc CFLAGS=-g -Wall -Wextra -Werror -std=c99 -pedantic -lm TARGET=main SRC=main.c all: $(CC) -o $(TARGET) $(SRC) $(CFLAGS) run: all ./$(TARGET)