Files
ladybird/Applications/ProcessManager/Makefile
Andreas Kling cf57d64481 ProcessManager: Add a "Memory map" view to show a process's VM layout.
Fetch all the data from /proc/PID/vm for the selected process and show it
in a nice GTableView. :^)
2019-07-28 12:15:24 +02:00

16 lines
282 B
Makefile

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