2006-03-04 18:16:49 +00:00
|
|
|
|
2011-11-21 02:52:41 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2014-11-24 20:55:03 +00:00
|
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
2010-11-20 18:54:39 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
bin_PROGRAMS = htop
|
2014-11-24 20:55:03 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
dist_man_MANS = htop.1
|
2006-07-12 01:14:48 +00:00
|
|
|
EXTRA_DIST = $(dist_man_MANS) htop.desktop htop.png scripts/MakeHeader.py \
|
|
|
|
install-sh autogen.sh missing
|
2006-03-04 18:16:49 +00:00
|
|
|
applicationsdir = $(datadir)/applications
|
|
|
|
applications_DATA = htop.desktop
|
|
|
|
pixmapdir = $(datadir)/pixmaps
|
|
|
|
pixmap_DATA = htop.png
|
|
|
|
|
2015-08-19 16:43:20 +00:00
|
|
|
htop_CFLAGS = -pedantic -Wall $(wextra_flag) -std=c99 -D_XOPEN_SOURCE_EXTENDED -DSYSCONFDIR=\"$(sysconfdir)\" -I"$(top_srcdir)/$(my_htop_platform)"
|
2015-07-12 18:47:43 +00:00
|
|
|
htop_LDFLAGS =
|
2011-12-26 22:04:29 +00:00
|
|
|
AM_CPPFLAGS = -DNDEBUG
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2007-05-21 19:09:19 +00:00
|
|
|
myhtopsources = AvailableMetersPanel.c CategoriesPanel.c CheckItem.c \
|
2015-01-22 01:27:31 +00:00
|
|
|
ClockMeter.c ColorsPanel.c ColumnsPanel.c CPUMeter.c CRT.c MainPanel.c \
|
2007-05-21 19:09:19 +00:00
|
|
|
DisplayOptionsPanel.c FunctionBar.c Hashtable.c Header.c htop.c ListItem.c \
|
|
|
|
LoadAverageMeter.c MemoryMeter.c Meter.c MetersPanel.c Object.c Panel.c \
|
2008-09-23 06:21:28 +00:00
|
|
|
BatteryMeter.c Process.c ProcessList.c RichString.c ScreenManager.c Settings.c \
|
2015-08-19 16:43:20 +00:00
|
|
|
SignalsPanel.c StringUtils.c SwapMeter.c TasksMeter.c UptimeMeter.c \
|
|
|
|
TraceScreen.c UsersTable.c Vector.c AvailableColumnsPanel.c AffinityPanel.c \
|
2016-01-12 08:00:58 +00:00
|
|
|
HostnameMeter.c OpenFilesScreen.c Affinity.c IncSet.c Action.c EnvScreen.c \
|
2016-02-02 14:53:02 +00:00
|
|
|
InfoScreen.c XAlloc.c
|
2007-05-21 19:09:19 +00:00
|
|
|
|
|
|
|
myhtopheaders = AvailableColumnsPanel.h AvailableMetersPanel.h \
|
|
|
|
CategoriesPanel.h CheckItem.h ClockMeter.h ColorsPanel.h ColumnsPanel.h \
|
2015-01-22 01:27:31 +00:00
|
|
|
CPUMeter.h CRT.h MainPanel.h DisplayOptionsPanel.h FunctionBar.h \
|
2007-05-21 19:09:19 +00:00
|
|
|
Hashtable.h Header.h htop.h ListItem.h LoadAverageMeter.h MemoryMeter.h \
|
2008-09-23 06:21:28 +00:00
|
|
|
BatteryMeter.h Meter.h MetersPanel.h Object.h Panel.h ProcessList.h RichString.h \
|
2015-08-19 16:43:20 +00:00
|
|
|
ScreenManager.h Settings.h SignalsPanel.h StringUtils.h SwapMeter.h \
|
|
|
|
TasksMeter.h UptimeMeter.h TraceScreen.h UsersTable.h Vector.h Process.h \
|
2015-12-02 21:58:22 +00:00
|
|
|
AffinityPanel.h HostnameMeter.h OpenFilesScreen.h Affinity.h IncSet.h Action.h \
|
2016-02-02 14:53:02 +00:00
|
|
|
EnvScreen.h InfoScreen.h XAlloc.h
|
2014-11-24 20:55:03 +00:00
|
|
|
|
|
|
|
if HTOP_LINUX
|
2015-03-16 06:13:42 +00:00
|
|
|
htop_CFLAGS += -rdynamic
|
2014-11-24 20:55:03 +00:00
|
|
|
myhtopplatsources = linux/Platform.c linux/IOPriorityPanel.c linux/IOPriority.c \
|
2014-11-27 23:02:52 +00:00
|
|
|
linux/LinuxProcess.c linux/LinuxProcessList.c linux/LinuxCRT.c linux/Battery.c
|
2014-11-24 20:55:03 +00:00
|
|
|
|
|
|
|
myhtopplatheaders = linux/Platform.h linux/IOPriorityPanel.h linux/IOPriority.h \
|
2014-11-27 23:02:52 +00:00
|
|
|
linux/LinuxProcess.h linux/LinuxProcessList.h linux/LinuxCRT.h linux/Battery.h
|
2014-11-24 20:55:03 +00:00
|
|
|
endif
|
|
|
|
|
2014-11-27 18:27:34 +00:00
|
|
|
if HTOP_FREEBSD
|
|
|
|
myhtopplatsources = freebsd/Platform.c freebsd/FreeBSDProcessList.c \
|
2015-03-16 06:13:42 +00:00
|
|
|
freebsd/FreeBSDProcess.c freebsd/FreeBSDCRT.c freebsd/Battery.c
|
2014-11-27 18:27:34 +00:00
|
|
|
|
|
|
|
myhtopplatheaders = freebsd/Platform.h freebsd/FreeBSDProcessList.h \
|
2015-03-16 06:13:42 +00:00
|
|
|
freebsd/FreeBSDProcess.h freebsd/FreeBSDCRT.h freebsd/Battery.h
|
2014-11-27 18:27:34 +00:00
|
|
|
endif
|
|
|
|
|
2017-04-19 14:12:17 +00:00
|
|
|
if HTOP_DRAGONFLYBSD
|
2017-04-21 14:36:19 +00:00
|
|
|
htop_LDFLAGS += -lkvm -lkinfo -lexecinfo
|
2017-04-19 14:12:17 +00:00
|
|
|
myhtopplatsources = dragonflybsd/Platform.c dragonflybsd/DragonFlyBSDProcessList.c \
|
|
|
|
dragonflybsd/DragonFlyBSDProcess.c dragonflybsd/DragonFlyBSDCRT.c dragonflybsd/Battery.c
|
|
|
|
|
|
|
|
myhtopplatheaders = dragonflybsd/Platform.h dragonflybsd/DragonFlyBSDProcessList.h \
|
|
|
|
dragonflybsd/DragonFlyBSDProcess.h dragonflybsd/DragonFlyBSDCRT.h dragonflybsd/Battery.h
|
|
|
|
endif
|
|
|
|
|
2015-09-18 04:46:48 +00:00
|
|
|
if HTOP_OPENBSD
|
|
|
|
myhtopplatsources = openbsd/Platform.c openbsd/OpenBSDProcessList.c \
|
|
|
|
openbsd/OpenBSDProcess.c openbsd/OpenBSDCRT.c openbsd/Battery.c
|
|
|
|
|
|
|
|
myhtopplatheaders = openbsd/Platform.h openbsd/OpenBSDProcessList.h \
|
|
|
|
openbsd/OpenBSDProcess.h openbsd/OpenBSDCRT.h openbsd/Battery.h
|
|
|
|
endif
|
|
|
|
|
2015-07-12 18:47:43 +00:00
|
|
|
if HTOP_DARWIN
|
|
|
|
htop_LDFLAGS += -framework IOKit -framework CoreFoundation
|
|
|
|
myhtopplatsources = darwin/Platform.c darwin/DarwinProcess.c \
|
|
|
|
darwin/DarwinProcessList.c darwin/DarwinCRT.c darwin/Battery.c
|
|
|
|
|
|
|
|
myhtopplatheaders = darwin/Platform.h darwin/DarwinProcess.h \
|
|
|
|
darwin/DarwinProcessList.h darwin/DarwinCRT.h darwin/Battery.h
|
|
|
|
endif
|
|
|
|
|
2014-11-24 20:55:03 +00:00
|
|
|
if HTOP_UNSUPPORTED
|
2015-02-23 03:59:24 +00:00
|
|
|
myhtopplatsources = unsupported/Platform.c \
|
|
|
|
unsupported/UnsupportedProcess.c unsupported/UnsupportedProcessList.c \
|
|
|
|
unsupported/UnsupportedCRT.c unsupported/Battery.c
|
2014-11-24 20:55:03 +00:00
|
|
|
|
2015-02-23 03:59:24 +00:00
|
|
|
myhtopplatheaders = unsupported/Platform.h \
|
|
|
|
unsupported/UnsupportedProcess.h unsupported/UnsupportedProcessList.h \
|
|
|
|
unsupported/UnsupportedCRT.h unsupported/Battery.h
|
2014-11-24 20:55:03 +00:00
|
|
|
endif
|
2007-05-21 19:09:19 +00:00
|
|
|
|
|
|
|
SUFFIXES = .h
|
|
|
|
|
2014-11-24 20:55:03 +00:00
|
|
|
BUILT_SOURCES = $(myhtopheaders) $(myhtopplatheaders)
|
|
|
|
htop_SOURCES = $(myhtopheaders) $(myhtopplatheaders) $(myhtopsources) $(myhtopplatsources) config.h
|
|
|
|
|
|
|
|
target:
|
|
|
|
echo $(htop_SOURCES)
|
2011-09-24 00:30:47 +00:00
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
profile:
|
2012-11-10 00:31:37 +00:00
|
|
|
$(MAKE) all CFLAGS="-pg" AM_CPPFLAGS="-pg -O2 -DNDEBUG"
|
2006-07-11 06:13:32 +00:00
|
|
|
|
2006-03-24 03:39:04 +00:00
|
|
|
debug:
|
2011-12-26 22:04:29 +00:00
|
|
|
$(MAKE) all CFLAGS="" AM_CPPFLAGS="-ggdb -DDEBUG"
|
2006-11-08 21:46:40 +00:00
|
|
|
|
2015-03-25 20:14:40 +00:00
|
|
|
coverage:
|
2016-02-19 15:40:21 +00:00
|
|
|
$(MAKE) all CFLAGS="" AM_CPPFLAGS="-fprofile-arcs -ftest-coverage -DDEBUG" LDFLAGS="-lgcov"
|
2015-03-25 20:14:40 +00:00
|
|
|
|
2007-05-21 19:09:19 +00:00
|
|
|
.c.h:
|
2013-11-29 12:27:53 +00:00
|
|
|
@srcdir@/scripts/MakeHeader.py $<
|
2007-05-21 19:09:19 +00:00
|
|
|
|
2011-10-25 00:46:37 +00:00
|
|
|
cppcheck:
|
2011-12-26 22:09:59 +00:00
|
|
|
cppcheck -q -v . --enable=all -DHAVE_CGROUP -DHAVE_OPENVZ -DHAVE_TASKSTATS
|
2014-11-24 20:55:03 +00:00
|
|
|
|
2015-03-25 20:14:40 +00:00
|
|
|
.PHONY: lcov
|
|
|
|
|
|
|
|
lcov:
|
|
|
|
mkdir -p lcov
|
|
|
|
lcov --capture --directory . --output-file coverage.info
|
|
|
|
genhtml coverage.info --output-directory lcov
|