summaryrefslogtreecommitdiff
path: root/Kernel/Makefile
diff options
context:
space:
mode:
authorRobin Burchell <robin+git@viroteck.net>2019-07-12 19:28:01 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-13 08:00:24 +0200
commit6c4024c04a354b39c89e453f281d5d67c69e22a3 (patch)
tree3a2098b7c7b29783361d1b108c3b0a1ff8221cbe /Kernel/Makefile
parent6e671f78a82bc3d9785bd35307cec72a84b6dcda (diff)
downloadserenity-6c4024c04a354b39c89e453f281d5d67c69e22a3.zip
Kernel: First cut of a sb16 driver
Also add an AudioServer that (right now) doesn't do much. It tries to open, parse, and play a wav file. In the future, it can do more. My general thinking here here is that /dev/audio will be "owned" by AudioServer, and we'll do mixing in software before passing buffers off to the kernel to play, but we have to start somewhere.
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r--Kernel/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile
index ef443b1422..936fe02eb0 100644
--- a/Kernel/Makefile
+++ b/Kernel/Makefile
@@ -75,7 +75,8 @@ VFS_OBJS = \
FileSystem/Ext2FileSystem.o \
FileSystem/VirtualFileSystem.o \
FileSystem/FileDescription.o \
- FileSystem/SyntheticFileSystem.o
+ FileSystem/SyntheticFileSystem.o \
+ Devices/SB16.o
AK_OBJS = \
../AK/String.o \