diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-03 12:28:45 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-03 12:28:45 +0200 |
commit | 9fca94269ef4c16e984e444a9002ff60a93ce4c9 (patch) | |
tree | d8d3207ccaf2a805eb0dedaa69b4240906a97936 /Kernel/Makefile | |
parent | f9864940eb394e30f4685ccc712916c6d68d4619 (diff) | |
download | serenity-9fca94269ef4c16e984e444a9002ff60a93ce4c9.zip |
Kernel: Move TTY-related files into Kernel/TTY/.
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r-- | Kernel/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index dd157bfa3c..d64d65b097 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -16,11 +16,11 @@ KERNEL_OBJS = \ IRQHandler.o \ kprintf.o \ RTC.o \ - TTY.o \ - PTYMultiplexer.o \ - MasterPTY.o \ - SlavePTY.o \ - VirtualConsole.o \ + TTY/TTY.o \ + TTY/PTYMultiplexer.o \ + TTY/MasterPTY.o \ + TTY/SlavePTY.o \ + TTY/VirtualConsole.o \ FIFO.o \ Scheduler.o \ DoubleBuffer.o \ |