diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-03 12:25:24 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-03 12:25:24 +0200 |
commit | f9864940eb394e30f4685ccc712916c6d68d4619 (patch) | |
tree | 0869b54967bf000e5f02de1639b5778146f6f33c /Kernel/Makefile | |
parent | f6d0e1052b46ac2c6637873e67aaa7564ba65b97 (diff) | |
download | serenity-f9864940eb394e30f4685ccc712916c6d68d4619.zip |
Kernel: Move FS-related files into Kernel/FileSystem/
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r-- | Kernel/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index 85ef1c7e55..dd157bfa3c 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -15,7 +15,6 @@ KERNEL_OBJS = \ Console.o \ IRQHandler.o \ kprintf.o \ - ProcFS.o \ RTC.o \ TTY.o \ PTYMultiplexer.o \ @@ -28,7 +27,7 @@ KERNEL_OBJS = \ ELFImage.o \ ELFLoader.o \ KSyms.o \ - DevPtsFS.o \ + FileSystem/DevPtsFS.o \ BXVGADevice.o \ PCI.o \ PS2MouseDevice.o \ @@ -44,6 +43,7 @@ KERNEL_OBJS = \ Net/NetworkTask.o VFS_OBJS = \ + FileSystem/ProcFS.o \ DiskDevice.o \ Device.o \ CharacterDevice.o \ @@ -52,12 +52,12 @@ VFS_OBJS = \ FullDevice.o \ ZeroDevice.o \ RandomDevice.o \ - FileSystem.o \ - DiskBackedFileSystem.o \ - Ext2FileSystem.o \ - VirtualFileSystem.o \ + FileSystem/FileSystem.o \ + FileSystem/DiskBackedFileSystem.o \ + FileSystem/Ext2FileSystem.o \ + FileSystem/VirtualFileSystem.o \ FileDescriptor.o \ - SyntheticFileSystem.o + FileSystem/SyntheticFileSystem.o AK_OBJS = \ ../AK/String.o \ |