esp_alox/tests/Makefile
2025-07-22 14:22:49 +02:00

15 lines
229 B
Makefile

CC=gcc
CFLAGS=-Wall -Wextra -I../main
SRC = Unity/src/unity.c test_parser.c \
../main/message_parser.c
TARGET = test_runner
all: $(TARGET)
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $@ $^
./$(TARGET)
clean:
rm -f $(TARGET)