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)