summaryrefslogtreecommitdiff
path: root/Kernel/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-03 12:28:45 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-03 12:28:45 +0200
commit9fca94269ef4c16e984e444a9002ff60a93ce4c9 (patch)
treed8d3207ccaf2a805eb0dedaa69b4240906a97936 /Kernel/Makefile
parentf9864940eb394e30f4685ccc712916c6d68d4619 (diff)
downloadserenity-9fca94269ef4c16e984e444a9002ff60a93ce4c9.zip
Kernel: Move TTY-related files into Kernel/TTY/.
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r--Kernel/Makefile10
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 \