Kernel now builds as a calypsi .a library

This commit is contained in:
Kyle Cardoza 2024-03-28 00:48:10 -04:00
parent 7cef9e15ab
commit 79930bf946
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
.PHONY: all
all: build/kernel.a
all: build/sentinel-kernel.a
.PHONY: clean
clean:
@ -29,7 +29,7 @@ clean:
@printf '%s' "$(dir $@)" > $@
@$(CC) $(CFLAGS) --dependencies $< >> $@
build/kernel.a: $(KERNEL_OBJ)
build/sentinel-kernel.a: $(KERNEL_OBJ)
@echo "Linking $@..."
@$(AR) $@ $^