Files
ladybird/Applications/ProcessManager/Makefile
Andreas Kling 9b7e1eb287 ProcessManager: Add a process-specific tab view below the process table.
To start out, add a "Stacks" view where we see what the selected process is
currently doing (via /proc/PID/stack) :^)
2019-07-27 09:39:43 +02:00

14 lines
221 B
Makefile

include ../../Makefile.common
OBJS = \
ProcessModel.o \
ProcessTableView.o \
MemoryStatsWidget.o \
GraphWidget.o \
ProcessStacksWidget.o \
main.o
APP = ProcessManager
include ../Makefile.common