Merge remote-tracking branch 'Userspace/master'

This commit is contained in:
EnderIce2
2024-11-20 05:02:06 +02:00
104 changed files with 11117 additions and 1 deletions

11
Userspace/libc/Makefile Normal file
View File

@ -0,0 +1,11 @@
build:
cp -r include/* ../out/include
cp ../Kernel/include/interface/syscalls.h ../out/include/fennix/syscall.h
make -C runtime build
make -C src build
make -C ElfInterpreter build
clean:
make -C runtime clean
make -C src clean
make -C ElfInterpreter clean