feat: port ProcMgr to new toolkit

This commit is contained in:
2026-04-10 22:55:51 +02:00
parent 91b09e8194
commit 0433274244
2 changed files with 254 additions and 219 deletions
+3
View File
@@ -39,6 +39,7 @@ CXXFLAGS := \
-msse2 \
-mno-red-zone \
-mcmodel=small \
-MMD -MP \
-I $(PROG_INC) \
-isystem $(PROG_INC)/libc \
-isystem ../../../kernel/freestnd-c-hdrs/x86_64/include \
@@ -70,5 +71,7 @@ $(OBJDIR)/%.o: %.cpp Makefile
mkdir -p $(OBJDIR)
$(CXX) $(CXXFLAGS) -c $< -o $@
-include $(OBJS:.o=.d)
clean:
rm -rf $(OBJDIR) $(TARGET)