fix: start migration to comply with GNU style

This commit is contained in:
2025-07-17 21:13:43 -04:00
parent d943d6db8c
commit 414fbf7214
3 changed files with 12 additions and 24 deletions

View File

@@ -20,10 +20,10 @@ build:
mkdir -p c-out/obj
c-out/obj/%.o: yait/%.c
$(CC) $(CFLAGS) -c $< -o $@
$(CC) $(CFLAGS) -DCOMMIT=$(shell git rev-list --count --all) -c $< -o $@
$(YAIT): $(YAIT_OBJS)
$(CC) $(CFLAGS) $^ -o $@
$(CC) $(CFLAGS) -DCOMMIT=$(shell git rev-list --count --all) $^ -o $@
endif