CC = gcc
CFLAGS = -Wall -Wextra -Werror -O2

TARGET = app
SRC = main.c

all:
	$(CC) $(CFLAGS) -o $(TARGET) $(SRC)

clean:
	rm -f $(TARGET)
