diff --git a/Makefile.example b/Makefile.example index a4b633f7..fd93ee09 100644 --- a/Makefile.example +++ b/Makefile.example @@ -3,7 +3,7 @@ ARCH = x86 NAME = metalsvm LWIPDIRS = lwip/src/arch lwip/src/api lwip/src/core lwip/src/core/ipv4 lwip/src/netif DRIVERDIRS = drivers/net drivers/char -KERNDIRS = libkern kernel mm fs arch/$(ARCH)/kernel arch/$(ARCH)/mm arch/$(ARCH)/scc $(LWIPDIRS) $(DRIVERDIRS) +KERNDIRS = libkern kernel mm fs apps arch/$(ARCH)/kernel arch/$(ARCH)/mm arch/$(ARCH)/scc $(LWIPDIRS) $(DRIVERDIRS) SUBDIRS = $(KERNDIRS) CC_FOR_TARGET=gcc diff --git a/kernel/Makefile b/kernel/Makefile index fabfe28e..0e498e06 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -1,4 +1,4 @@ -C_source := main.c tasks.c syscall.c tests.c echo.c netio.c init.c +C_source := main.c tasks.c syscall.c init.c MODULE := kernel include $(TOPDIR)/Makefile.inc