Added Git Hash To Build

This commit is contained in:
2025-07-22 14:22:49 +02:00
parent 94b5fd47a4
commit b4d9f24f0e
5 changed files with 133 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
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)