summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorExplorer09 <explorer09@gmail.com>2018-03-17 09:42:52 +0800
committerHisham Muhammad <hisham@gobolinux.org>2018-04-06 11:14:04 -0300
commit1ab5afa1fe2032afc70397e9d80ce25013852efb (patch)
treebcdb16d79d46739774c47342550072e78d2dfc31
parent00d1fb019a1905dd8d29210e7598c41af7399f88 (diff)
New makefile targets to rebuild and clean htop headers.
`make htop-headers` will regenerate all '.h' headers in htop source for all platforms. `make clean-htop-headers` will delete all generated htop headers. Because of the introduction of these two targets, I slightly changed the style of platform-specific portions of makefile rules. Please comment if you accept such a style, or need me to revert to old style. Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
-rw-r--r--Makefile.am122
1 files changed, 105 insertions, 17 deletions
diff --git a/Makefile.am b/Makefile.am
index f095d6d7..b71a9e86 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -36,76 +36,164 @@ TasksMeter.h UptimeMeter.h TraceScreen.h UsersTable.h Vector.h Process.h \
AffinityPanel.h HostnameMeter.h OpenFilesScreen.h Affinity.h IncSet.h Action.h \
EnvScreen.h InfoScreen.h XAlloc.h
+all_platform_headers =
+
+# Linux
+# -----
+
+linux_platform_headers = \
+ linux/Platform.h \
+ linux/IOPriorityPanel.h \
+ linux/IOPriority.h \
+ linux/LinuxProcess.h \
+ linux/LinuxProcessList.h \
+ linux/LinuxCRT.h \
+ linux/Battery.h \
+ linux/PerfCounter.h
+
+all_platform_headers += $(linux_platform_headers)
+
if HTOP_LINUX
AM_CFLAGS += -rdynamic
myhtopplatsources = linux/Platform.c linux/IOPriorityPanel.c linux/IOPriority.c \
linux/LinuxProcess.c linux/LinuxProcessList.c linux/LinuxCRT.c linux/Battery.c \
linux/PerfCounter.c
-myhtopplatheaders = linux/Platform.h linux/IOPriorityPanel.h linux/IOPriority.h \
-linux/LinuxProcess.h linux/LinuxProcessList.h linux/LinuxCRT.h linux/Battery.h \
-linux/PerfCounter.h
+myhtopplatheaders = $(linux_platform_headers)
endif
+# FreeBSD
+# -------
+
+freebsd_platform_headers = \
+ freebsd/Platform.h \
+ freebsd/FreeBSDProcessList.h \
+ freebsd/FreeBSDProcess.h \
+ freebsd/FreeBSDCRT.h \
+ freebsd/Battery.h
+
+all_platform_headers += $(freebsd_platform_headers)
+
if HTOP_FREEBSD
myhtopplatsources = freebsd/Platform.c freebsd/FreeBSDProcessList.c \
freebsd/FreeBSDProcess.c freebsd/FreeBSDCRT.c freebsd/Battery.c
-myhtopplatheaders = freebsd/Platform.h freebsd/FreeBSDProcessList.h \
-freebsd/FreeBSDProcess.h freebsd/FreeBSDCRT.h freebsd/Battery.h
+myhtopplatheaders = $(freebsd_platform_headers)
endif
+# DragonFlyBSD
+# ------------
+
+dragonflybsd_platform_headers = \
+ dragonflybsd/Platform.h \
+ dragonflybsd/DragonFlyBSDProcessList.h \
+ dragonflybsd/DragonFlyBSDProcess.h \
+ dragonflybsd/DragonFlyBSDCRT.h \
+ dragonflybsd/Battery.h
+
+all_platform_headers += $(dragonflybsd_platform_headers)
+
if HTOP_DRAGONFLYBSD
AM_LDFLAGS += -lkvm -lkinfo -lexecinfo
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
+myhtopplatheaders = $(dragonflybsd_platform_headers)
endif
+# OpenBSD
+# -------
+
+openbsd_platform_headers = \
+ openbsd/Platform.h \
+ openbsd/OpenBSDProcessList.h \
+ openbsd/OpenBSDProcess.h \
+ openbsd/OpenBSDCRT.h \
+ openbsd/Battery.h
+
+all_platform_headers += $(openbsd_platform_headers)
+
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
+myhtopplatheaders = $(openbsd_platform_headers)
endif
+# Darwin
+# ------
+
+darwin_platform_headers = \
+ darwin/Platform.h \
+ darwin/DarwinProcess.h \
+ darwin/DarwinProcessList.h \
+ darwin/DarwinCRT.h \
+ darwin/Battery.h
+
+all_platform_headers += $(darwin_platform_headers)
+
if HTOP_DARWIN
AM_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
+myhtopplatheaders = $(darwin_platform_headers)
endif
+# Solaris
+# -------
+
+solaris_platform_headers = \
+ solaris/Platform.h \
+ solaris/SolarisProcess.h \
+ solaris/SolarisProcessList.h \
+ solaris/SolarisCRT.h \
+ solaris/Battery.h
+
+all_platform_headers += $(solaris_platform_headers)
+
if HTOP_SOLARIS
myhtopplatsources = solaris/Platform.c \
solaris/SolarisProcess.c solaris/SolarisProcessList.c \
solaris/SolarisCRT.c solaris/Battery.c
-myhtopplatheaders = solaris/Platform.h \
-solaris/SolarisProcess.h solaris/SolarisProcessList.h \
-solaris/SolarisCRT.h solaris/Battery.h
+myhtopplatheaders = $(solaris_platform_headers)
endif
+# Unsupported
+# -----------
+
+unsupported_platform_headers = \
+ unsupported/Platform.h \
+ unsupported/UnsupportedProcess.h \
+ unsupported/UnsupportedProcessList.h \
+ unsupported/UnsupportedCRT.h \
+ unsupported/Battery.h
+
+all_platform_headers += $(unsupported_platform_headers)
+
if HTOP_UNSUPPORTED
myhtopplatsources = unsupported/Platform.c \
unsupported/UnsupportedProcess.c unsupported/UnsupportedProcessList.c \
unsupported/UnsupportedCRT.c unsupported/Battery.c
-myhtopplatheaders = unsupported/Platform.h \
-unsupported/UnsupportedProcess.h unsupported/UnsupportedProcessList.h \
-unsupported/UnsupportedCRT.h unsupported/Battery.h
+myhtopplatheaders = $(unsupported_platform_headers)
endif
+# ----
+
SUFFIXES = .h
BUILT_SOURCES = $(myhtopheaders) $(myhtopplatheaders)
htop_SOURCES = $(myhtopheaders) $(myhtopplatheaders) $(myhtopsources) $(myhtopplatsources) config.h
+.PHONY: htop-headers clean-htop-headers
+
+htop-headers: $(myhtopheaders) $(all_platform_headers)
+
+clean-htop-headers:
+ -rm -f $(myhtopheaders) $(all_platform_headers)
+
target:
echo $(htop_SOURCES)

© 2014-2024 Faster IT GmbH | imprint | privacy policy