commit fa71e446879f1e5ba4dca2913d4e89198f60cbd3 from: Benjamin Stürz date: Wed Dec 11 15:06:53 2024 UTC sys: fix out-of-tree build commit - 561c251725b85b67d9559ca9bc6e83a8a9af2d0a commit + fa71e446879f1e5ba4dca2913d4e89198f60cbd3 blob - b70febea5b993685943c2f876a0e7b2395f1b02e blob + bd990451492da1a59ab1bc5c720df90543dd98b8 --- sys/MyMakefile +++ sys/MyMakefile @@ -28,7 +28,7 @@ sys.bin: sys.elf # TODO: fix out of tree build: ${OBJ} sys.elf: linker.ld ${OBJ} - ld -o $@ -T linker.ld ${OBJ} ${LDFLAGS} + ld -o $@ -T linker.ld ${OBJ:F} ${LDFLAGS} user.bin: user.asm nasm -fbin -o $@ $<