Kernel is now in C++ :)

This commit is contained in:
Bananymous
2022-11-12 21:30:26 +02:00
parent e6b4866ab0
commit 61609db228
7 changed files with 19 additions and 4 deletions

View File

@@ -62,6 +62,9 @@ $(ARCHDIR)/crtbegin.o $(ARCHDIR)/crtend.o:
.c.o:
$(CC) -MD -c $< -o $@ -std=gnu11 $(CFLAGS) $(CPPFLAGS)
.cpp.o:
$(CXX) -MD -c $< -o $@ $(CFLAGS) $(CPPFLAGS)
.S.o:
$(CC) -MD -c $< -o $@ $(CFLAGS) $(CPPFLAGS)