mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-25 09:56:05 +00:00
To start out, add a "Stacks" view where we see what the selected process is currently doing (via /proc/PID/stack) :^)
14 lines
221 B
Makefile
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
|