feat: FASM target

This commit is contained in:
2025-08-22 20:51:25 -04:00
parent 8fb97ffa8f
commit a38010ec62
7 changed files with 108 additions and 60 deletions

View File

@@ -17,8 +17,8 @@ all: build $(YAIT)
build:
mkdir -p bin
$(YAIT): $(YAIT_SRCS)
$(CC) $(CFLAGS) -Iinclude -DCOMMIT=$(shell git rev-list --count --all) $^ -o $@
$(YAIT): $(YAIT_SRCS) config.mak
$(CC) $(CFLAGS) -Iinclude -DCOMMIT=$(shell git rev-list --count --all) $(YAIT_SRCS) -o $@
endif