Serenity Operating System
1OBJS = \
2 ProcessModel.o \
3 DevicesModel.o \
4 ProcessTableView.o \
5 MemoryStatsWidget.o \
6 GraphWidget.o \
7 ProcessStacksWidget.o \
8 ProcessMemoryMapWidget.o \
9 ProcessFileDescriptorMapWidget.o \
10 NetworkStatisticsWidget.o \
11 ProcessUnveiledPathsWidget.o \
12 main.o
13
14PROGRAM = SystemMonitor
15
16LIB_DEPS = GUI Gfx Protocol PCIDB IPC Thread Pthread Core
17
18ifeq ($(HOSTED),1)
19 UNAME_S := $(shell uname -s)
20 ifeq ($(UNAME_S),OpenBSD)
21 LDFLAGS += -lkvm
22 endif
23endif
24
25include ../../Makefile.common