fix: finished stand argument parsing

This commit is contained in:
2025-07-17 22:11:47 -04:00
parent 414fbf7214
commit 17e0cd44aa
3 changed files with 4 additions and 5 deletions

View File

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