CFLAGS += -O2 -Wall -Wextra -Wpedantic
LDFLAGS += -lm -lncurses

TARGET := dartbot

SRC := $(wildcard *.c)
OBJ := $(SRC:.c=.o)

all: $(TARGET)

$(TARGET): $(OBJ)

clean:
	rm -f $(TARGET) $(OBJ)

.PHONY: all clean