diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-28 22:40:55 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-28 22:40:55 +0100 |
commit | 7455f5ea4200c5f90bcbc2c025c58a00938952c4 (patch) | |
tree | 74c4232ecea73688a726bcd009e2d4f1092c2260 /Userland/Makefile | |
parent | 442351a5f801e3c3feb967d60404457988da30e7 (diff) | |
download | serenity-7455f5ea4200c5f90bcbc2c025c58a00938952c4.zip |
Expose the kernel log buffer through /proc/dmesg.
Also add a /bin/dmesg program for convenience.
Diffstat (limited to 'Userland/Makefile')
-rw-r--r-- | Userland/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Makefile b/Userland/Makefile index e4bc3924e6..80bb0ee77c 100644 --- a/Userland/Makefile +++ b/Userland/Makefile @@ -24,6 +24,7 @@ OBJS = \ sysctl.o \ cp.o \ rmdir.o \ + dmesg.o \ rm.o APPS = \ @@ -53,6 +54,7 @@ APPS = \ sysctl \ cp \ rmdir \ + dmesg \ rm ARCH_FLAGS = @@ -118,6 +120,9 @@ tst: tst.o mm: mm.o $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a +dmesg: dmesg.o + $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a + kill: kill.o $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a |