Makefile 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. # Makefile for cpupower
  2. #
  3. # Copyright (C) 2005,2006 Dominik Brodowski <linux@dominikbrodowski.net>
  4. #
  5. # Based largely on the Makefile for udev by:
  6. #
  7. # Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
  8. #
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; version 2 of the License.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. # General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. #
  22. OUTPUT=./
  23. ifeq ("$(origin O)", "command line")
  24. OUTPUT := $(O)/
  25. endif
  26. ifneq ($(OUTPUT),)
  27. # check that the output directory actually exists
  28. OUTDIR := $(shell cd $(OUTPUT) && /bin/pwd)
  29. $(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
  30. endif
  31. # --- CONFIGURATION BEGIN ---
  32. # Set the following to `true' to make a unstripped, unoptimized
  33. # binary. Leave this set to `false' for production use.
  34. DEBUG ?= true
  35. # make the build silent. Set this to something else to make it noisy again.
  36. V ?= false
  37. # Internationalization support (output in different languages).
  38. # Requires gettext.
  39. NLS ?= true
  40. # Set the following to 'true' to build/install the
  41. # cpufreq-bench benchmarking tool
  42. CPUFREQ_BENCH ?= true
  43. # Prefix to the directories we're installing to
  44. DESTDIR ?=
  45. # --- CONFIGURATION END ---
  46. # Package-related definitions. Distributions can modify the version
  47. # and _should_ modify the PACKAGE_BUGREPORT definition
  48. VERSION= $(shell ./utils/version-gen.sh)
  49. LIB_MAJ= 0.0.0
  50. LIB_MIN= 0
  51. PACKAGE = cpupower
  52. PACKAGE_BUGREPORT = linux-pm@vger.kernel.org
  53. LANGUAGES = de fr it cs pt
  54. # Directory definitions. These are default and most probably
  55. # do not need to be changed. Please note that DESTDIR is
  56. # added in front of any of them
  57. bindir ?= /usr/bin
  58. sbindir ?= /usr/sbin
  59. mandir ?= /usr/man
  60. includedir ?= /usr/include
  61. libdir ?= /usr/lib
  62. localedir ?= /usr/share/locale
  63. docdir ?= /usr/share/doc/packages/cpupower
  64. confdir ?= /etc/
  65. # Toolchain: what tools do we use, and what options do they need:
  66. CP = cp -fpR
  67. INSTALL = /usr/bin/install -c
  68. INSTALL_PROGRAM = ${INSTALL}
  69. INSTALL_DATA = ${INSTALL} -m 644
  70. INSTALL_SCRIPT = ${INSTALL_PROGRAM}
  71. # If you are running a cross compiler, you may want to set this
  72. # to something more interesting, like "arm-linux-". If you want
  73. # to compile vs uClibc, that can be done here as well.
  74. CROSS = #/usr/i386-linux-uclibc/usr/bin/i386-uclibc-
  75. CC = $(CROSS)gcc
  76. LD = $(CROSS)gcc
  77. AR = $(CROSS)ar
  78. STRIP = $(CROSS)strip
  79. RANLIB = $(CROSS)ranlib
  80. HOSTCC = gcc
  81. MKDIR = mkdir
  82. # Now we set up the build system
  83. #
  84. # set up PWD so that older versions of make will work with our build.
  85. PWD = $(shell pwd)
  86. GMO_FILES = ${shell for HLANG in ${LANGUAGES}; do echo $(OUTPUT)po/$$HLANG.gmo; done;}
  87. export CROSS CC AR STRIP RANLIB CFLAGS LDFLAGS LIB_OBJS
  88. # check if compiler option is supported
  89. cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -x c /dev/null > /dev/null 2>&1; then echo "$(1)"; fi;}
  90. # use '-Os' optimization if available, else use -O2
  91. OPTIMIZATION := $(call cc-supports,-Os,-O2)
  92. WARNINGS := -Wall -Wchar-subscripts -Wpointer-arith -Wsign-compare
  93. WARNINGS += $(call cc-supports,-Wno-pointer-sign)
  94. WARNINGS += $(call cc-supports,-Wdeclaration-after-statement)
  95. WARNINGS += -Wshadow
  96. CFLAGS += -DVERSION=\"$(VERSION)\" -DPACKAGE=\"$(PACKAGE)\" \
  97. -DPACKAGE_BUGREPORT=\"$(PACKAGE_BUGREPORT)\" -D_GNU_SOURCE
  98. UTIL_OBJS = utils/helpers/amd.o utils/helpers/topology.o utils/helpers/msr.o \
  99. utils/helpers/sysfs.o utils/helpers/misc.o utils/helpers/cpuid.o \
  100. utils/helpers/pci.o utils/helpers/bitmask.o \
  101. utils/idle_monitor/nhm_idle.o utils/idle_monitor/snb_idle.o \
  102. utils/idle_monitor/hsw_ext_idle.o \
  103. utils/idle_monitor/amd_fam14h_idle.o utils/idle_monitor/cpuidle_sysfs.o \
  104. utils/idle_monitor/mperf_monitor.o utils/idle_monitor/cpupower-monitor.o \
  105. utils/cpupower.o utils/cpufreq-info.o utils/cpufreq-set.o \
  106. utils/cpupower-set.o utils/cpupower-info.o utils/cpuidle-info.o \
  107. utils/cpuidle-set.o
  108. UTIL_SRC := $(UTIL_OBJS:.o=.c)
  109. UTIL_OBJS := $(addprefix $(OUTPUT),$(UTIL_OBJS))
  110. UTIL_HEADERS = utils/helpers/helpers.h utils/idle_monitor/cpupower-monitor.h \
  111. utils/helpers/bitmask.h \
  112. utils/idle_monitor/idle_monitors.h utils/idle_monitor/idle_monitors.def
  113. LIB_HEADERS = lib/cpufreq.h lib/sysfs.h
  114. LIB_SRC = lib/cpufreq.c lib/sysfs.c
  115. LIB_OBJS = lib/cpufreq.o lib/sysfs.o
  116. LIB_OBJS := $(addprefix $(OUTPUT),$(LIB_OBJS))
  117. CFLAGS += -pipe
  118. ifeq ($(strip $(NLS)),true)
  119. INSTALL_NLS += install-gmo
  120. COMPILE_NLS += create-gmo
  121. CFLAGS += -DNLS
  122. endif
  123. ifeq ($(strip $(CPUFREQ_BENCH)),true)
  124. INSTALL_BENCH += install-bench
  125. COMPILE_BENCH += compile-bench
  126. endif
  127. CFLAGS += $(WARNINGS)
  128. ifeq ($(strip $(V)),false)
  129. QUIET=@
  130. ECHO=@echo
  131. else
  132. QUIET=
  133. ECHO=@\#
  134. endif
  135. export QUIET ECHO
  136. # if DEBUG is enabled, then we do not strip or optimize
  137. ifeq ($(strip $(DEBUG)),true)
  138. CFLAGS += -O1 -g -DDEBUG
  139. STRIPCMD = /bin/true -Since_we_are_debugging
  140. else
  141. CFLAGS += $(OPTIMIZATION) -fomit-frame-pointer
  142. STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
  143. endif
  144. # the actual make rules
  145. all: libcpupower $(OUTPUT)cpupower $(COMPILE_NLS) $(COMPILE_BENCH)
  146. $(OUTPUT)lib/%.o: $(LIB_SRC) $(LIB_HEADERS)
  147. $(ECHO) " CC " $@
  148. $(QUIET) $(CC) $(CFLAGS) -fPIC -o $@ -c lib/$*.c
  149. $(OUTPUT)libcpupower.so.$(LIB_MAJ): $(LIB_OBJS)
  150. $(ECHO) " LD " $@
  151. $(QUIET) $(CC) -shared $(CFLAGS) $(LDFLAGS) -o $@ \
  152. -Wl,-soname,libcpupower.so.$(LIB_MIN) $(LIB_OBJS)
  153. @ln -sf $(@F) $(OUTPUT)libcpupower.so
  154. @ln -sf $(@F) $(OUTPUT)libcpupower.so.$(LIB_MIN)
  155. libcpupower: $(OUTPUT)libcpupower.so.$(LIB_MAJ)
  156. # Let all .o files depend on its .c file and all headers
  157. # Might be worth to put this into utils/Makefile at some point of time
  158. $(UTIL_OBJS): $(UTIL_HEADERS)
  159. $(OUTPUT)%.o: %.c
  160. $(ECHO) " CC " $@
  161. $(QUIET) $(CC) $(CFLAGS) -I./lib -I ./utils -o $@ -c $*.c
  162. $(OUTPUT)cpupower: $(UTIL_OBJS) $(OUTPUT)libcpupower.so.$(LIB_MAJ)
  163. $(ECHO) " CC " $@
  164. $(QUIET) $(CC) $(CFLAGS) $(LDFLAGS) $(UTIL_OBJS) -lcpupower -lrt -lpci -L$(OUTPUT) -o $@
  165. $(QUIET) $(STRIPCMD) $@
  166. $(OUTPUT)po/$(PACKAGE).pot: $(UTIL_SRC)
  167. $(ECHO) " GETTEXT " $@
  168. $(QUIET) xgettext --default-domain=$(PACKAGE) --add-comments \
  169. --keyword=_ --keyword=N_ $(UTIL_SRC) -p $(@D) -o $(@F)
  170. $(OUTPUT)po/%.gmo: po/%.po
  171. $(ECHO) " MSGFMT " $@
  172. $(QUIET) msgfmt -o $@ po/$*.po
  173. create-gmo: ${GMO_FILES}
  174. update-po: $(OUTPUT)po/$(PACKAGE).pot
  175. $(ECHO) " MSGMRG " $@
  176. $(QUIET) @for HLANG in $(LANGUAGES); do \
  177. echo -n "Updating $$HLANG "; \
  178. if msgmerge po/$$HLANG.po $< -o \
  179. $(OUTPUT)po/$$HLANG.new.po; then \
  180. mv -f $(OUTPUT)po/$$HLANG.new.po $(OUTPUT)po/$$HLANG.po; \
  181. else \
  182. echo "msgmerge for $$HLANG failed!"; \
  183. rm -f $(OUTPUT)po/$$HLANG.new.po; \
  184. fi; \
  185. done;
  186. compile-bench: $(OUTPUT)libcpupower.so.$(LIB_MAJ)
  187. @V=$(V) confdir=$(confdir) $(MAKE) -C bench O=$(OUTPUT)
  188. # we compile into subdirectories. if the target directory is not the
  189. # source directory, they might not exists. So we depend the various
  190. # files onto their directories.
  191. DIRECTORY_DEPS = $(LIB_OBJS) $(UTIL_OBJS) $(GMO_FILES)
  192. $(DIRECTORY_DEPS): | $(sort $(dir $(DIRECTORY_DEPS)))
  193. # In the second step, we make a rule to actually create these directories
  194. $(sort $(dir $(DIRECTORY_DEPS))):
  195. $(ECHO) " MKDIR " $@
  196. $(QUIET) $(MKDIR) -p $@ 2>/dev/null
  197. clean:
  198. -find $(OUTPUT) \( -not -type d \) -and \( -name '*~' -o -name '*.[oas]' \) -type f -print \
  199. | xargs rm -f
  200. -rm -f $(OUTPUT)cpupower
  201. -rm -f $(OUTPUT)libcpupower.so*
  202. -rm -rf $(OUTPUT)po/*.gmo
  203. -rm -rf $(OUTPUT)po/*.pot
  204. $(MAKE) -C bench O=$(OUTPUT) clean
  205. install-lib:
  206. $(INSTALL) -d $(DESTDIR)${libdir}
  207. $(CP) $(OUTPUT)libcpupower.so* $(DESTDIR)${libdir}/
  208. $(INSTALL) -d $(DESTDIR)${includedir}
  209. $(INSTALL_DATA) lib/cpufreq.h $(DESTDIR)${includedir}/cpufreq.h
  210. install-tools:
  211. $(INSTALL) -d $(DESTDIR)${bindir}
  212. $(INSTALL_PROGRAM) $(OUTPUT)cpupower $(DESTDIR)${bindir}
  213. install-man:
  214. $(INSTALL_DATA) -D man/cpupower.1 $(DESTDIR)${mandir}/man1/cpupower.1
  215. $(INSTALL_DATA) -D man/cpupower-frequency-set.1 $(DESTDIR)${mandir}/man1/cpupower-frequency-set.1
  216. $(INSTALL_DATA) -D man/cpupower-frequency-info.1 $(DESTDIR)${mandir}/man1/cpupower-frequency-info.1
  217. $(INSTALL_DATA) -D man/cpupower-idle-set.1 $(DESTDIR)${mandir}/man1/cpupower-idle-set.1
  218. $(INSTALL_DATA) -D man/cpupower-idle-info.1 $(DESTDIR)${mandir}/man1/cpupower-idle-info.1
  219. $(INSTALL_DATA) -D man/cpupower-set.1 $(DESTDIR)${mandir}/man1/cpupower-set.1
  220. $(INSTALL_DATA) -D man/cpupower-info.1 $(DESTDIR)${mandir}/man1/cpupower-info.1
  221. $(INSTALL_DATA) -D man/cpupower-monitor.1 $(DESTDIR)${mandir}/man1/cpupower-monitor.1
  222. install-gmo:
  223. $(INSTALL) -d $(DESTDIR)${localedir}
  224. for HLANG in $(LANGUAGES); do \
  225. echo '$(INSTALL_DATA) -D $(OUTPUT)po/$$HLANG.gmo $(DESTDIR)${localedir}/$$HLANG/LC_MESSAGES/cpupower.mo'; \
  226. $(INSTALL_DATA) -D $(OUTPUT)po/$$HLANG.gmo $(DESTDIR)${localedir}/$$HLANG/LC_MESSAGES/cpupower.mo; \
  227. done;
  228. install-bench:
  229. @#DESTDIR must be set from outside to survive
  230. @sbindir=$(sbindir) bindir=$(bindir) docdir=$(docdir) confdir=$(confdir) $(MAKE) -C bench O=$(OUTPUT) install
  231. install: all install-lib install-tools install-man $(INSTALL_NLS) $(INSTALL_BENCH)
  232. uninstall:
  233. - rm -f $(DESTDIR)${libdir}/libcpupower.*
  234. - rm -f $(DESTDIR)${includedir}/cpufreq.h
  235. - rm -f $(DESTDIR)${bindir}/utils/cpupower
  236. - rm -f $(DESTDIR)${mandir}/man1/cpupower.1
  237. - rm -f $(DESTDIR)${mandir}/man1/cpupower-frequency-set.1
  238. - rm -f $(DESTDIR)${mandir}/man1/cpupower-frequency-info.1
  239. - rm -f $(DESTDIR)${mandir}/man1/cpupower-set.1
  240. - rm -f $(DESTDIR)${mandir}/man1/cpupower-info.1
  241. - rm -f $(DESTDIR)${mandir}/man1/cpupower-monitor.1
  242. - for HLANG in $(LANGUAGES); do \
  243. rm -f $(DESTDIR)${localedir}/$$HLANG/LC_MESSAGES/cpupower.mo; \
  244. done;
  245. .PHONY: all utils libcpupower update-po create-gmo install-lib install-tools install-man install-gmo install uninstall clean