Makefile 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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 = cpufreq@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/amd_fam14h_idle.o utils/idle_monitor/cpuidle_sysfs.o \
  103. utils/idle_monitor/mperf_monitor.o utils/idle_monitor/cpupower-monitor.o \
  104. utils/cpupower.o utils/cpufreq-info.o utils/cpufreq-set.o \
  105. utils/cpupower-set.o utils/cpupower-info.o utils/cpuidle-info.o
  106. UTIL_SRC := $(UTIL_OBJS:.o=.c)
  107. UTIL_OBJS := $(addprefix $(OUTPUT),$(UTIL_OBJS))
  108. UTIL_HEADERS = utils/helpers/helpers.h utils/idle_monitor/cpupower-monitor.h \
  109. utils/helpers/bitmask.h \
  110. utils/idle_monitor/idle_monitors.h utils/idle_monitor/idle_monitors.def
  111. LIB_HEADERS = lib/cpufreq.h lib/sysfs.h
  112. LIB_SRC = lib/cpufreq.c lib/sysfs.c
  113. LIB_OBJS = lib/cpufreq.o lib/sysfs.o
  114. LIB_OBJS := $(addprefix $(OUTPUT),$(LIB_OBJS))
  115. CFLAGS += -pipe
  116. ifeq ($(strip $(NLS)),true)
  117. INSTALL_NLS += install-gmo
  118. COMPILE_NLS += create-gmo
  119. CFLAGS += -DNLS
  120. endif
  121. ifeq ($(strip $(CPUFREQ_BENCH)),true)
  122. INSTALL_BENCH += install-bench
  123. COMPILE_BENCH += compile-bench
  124. endif
  125. CFLAGS += $(WARNINGS)
  126. ifeq ($(strip $(V)),false)
  127. QUIET=@
  128. ECHO=@echo
  129. else
  130. QUIET=
  131. ECHO=@\#
  132. endif
  133. export QUIET ECHO
  134. # if DEBUG is enabled, then we do not strip or optimize
  135. ifeq ($(strip $(DEBUG)),true)
  136. CFLAGS += -O1 -g -DDEBUG
  137. STRIPCMD = /bin/true -Since_we_are_debugging
  138. else
  139. CFLAGS += $(OPTIMIZATION) -fomit-frame-pointer
  140. STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
  141. endif
  142. # the actual make rules
  143. all: libcpupower $(OUTPUT)cpupower $(COMPILE_NLS) $(COMPILE_BENCH)
  144. $(OUTPUT)lib/%.o: $(LIB_SRC) $(LIB_HEADERS)
  145. $(ECHO) " CC " $@
  146. $(QUIET) $(CC) $(CFLAGS) -fPIC -o $@ -c lib/$*.c
  147. $(OUTPUT)libcpupower.so.$(LIB_MAJ): $(LIB_OBJS)
  148. $(ECHO) " LD " $@
  149. $(QUIET) $(CC) -shared $(CFLAGS) $(LDFLAGS) -o $@ \
  150. -Wl,-soname,libcpupower.so.$(LIB_MIN) $(LIB_OBJS)
  151. @ln -sf $(@F) $(OUTPUT)libcpupower.so
  152. @ln -sf $(@F) $(OUTPUT)libcpupower.so.$(LIB_MIN)
  153. libcpupower: $(OUTPUT)libcpupower.so.$(LIB_MAJ)
  154. # Let all .o files depend on its .c file and all headers
  155. # Might be worth to put this into utils/Makefile at some point of time
  156. $(UTIL_OBJS): $(UTIL_HEADERS)
  157. $(OUTPUT)%.o: %.c
  158. $(ECHO) " CC " $@
  159. $(QUIET) $(CC) $(CFLAGS) -I./lib -I ./utils -o $@ -c $*.c
  160. $(OUTPUT)cpupower: $(UTIL_OBJS) $(OUTPUT)libcpupower.so.$(LIB_MAJ)
  161. $(ECHO) " CC " $@
  162. $(QUIET) $(CC) $(CFLAGS) $(LDFLAGS) $(UTIL_OBJS) -lcpupower -lrt -lpci -L$(OUTPUT) -o $@
  163. $(QUIET) $(STRIPCMD) $@
  164. $(OUTPUT)po/$(PACKAGE).pot: $(UTIL_SRC)
  165. $(ECHO) " GETTEXT " $@
  166. $(QUIET) xgettext --default-domain=$(PACKAGE) --add-comments \
  167. --keyword=_ --keyword=N_ $(UTIL_SRC) -p $(@D) -o $(@F)
  168. $(OUTPUT)po/%.gmo: po/%.po
  169. $(ECHO) " MSGFMT " $@
  170. $(QUIET) msgfmt -o $@ po/$*.po
  171. create-gmo: ${GMO_FILES}
  172. update-po: $(OUTPUT)po/$(PACKAGE).pot
  173. $(ECHO) " MSGMRG " $@
  174. $(QUIET) @for HLANG in $(LANGUAGES); do \
  175. echo -n "Updating $$HLANG "; \
  176. if msgmerge po/$$HLANG.po $< -o \
  177. $(OUTPUT)po/$$HLANG.new.po; then \
  178. mv -f $(OUTPUT)po/$$HLANG.new.po $(OUTPUT)po/$$HLANG.po; \
  179. else \
  180. echo "msgmerge for $$HLANG failed!"; \
  181. rm -f $(OUTPUT)po/$$HLANG.new.po; \
  182. fi; \
  183. done;
  184. compile-bench: $(OUTPUT)libcpupower.so.$(LIB_MAJ)
  185. @V=$(V) confdir=$(confdir) $(MAKE) -C bench O=$(OUTPUT)
  186. # we compile into subdirectories. if the target directory is not the
  187. # source directory, they might not exists. So we depend the various
  188. # files onto their directories.
  189. DIRECTORY_DEPS = $(LIB_OBJS) $(UTIL_OBJS) $(GMO_FILES)
  190. $(DIRECTORY_DEPS): | $(sort $(dir $(DIRECTORY_DEPS)))
  191. # In the second step, we make a rule to actually create these directories
  192. $(sort $(dir $(DIRECTORY_DEPS))):
  193. $(ECHO) " MKDIR " $@
  194. $(QUIET) $(MKDIR) -p $@ 2>/dev/null
  195. clean:
  196. -find $(OUTPUT) \( -not -type d \) -and \( -name '*~' -o -name '*.[oas]' \) -type f -print \
  197. | xargs rm -f
  198. -rm -f $(OUTPUT)cpupower
  199. -rm -f $(OUTPUT)libcpupower.so*
  200. -rm -rf $(OUTPUT)po/*.{gmo,pot}
  201. $(MAKE) -C bench O=$(OUTPUT) clean
  202. install-lib:
  203. $(INSTALL) -d $(DESTDIR)${libdir}
  204. $(CP) $(OUTPUT)libcpupower.so* $(DESTDIR)${libdir}/
  205. $(INSTALL) -d $(DESTDIR)${includedir}
  206. $(INSTALL_DATA) lib/cpufreq.h $(DESTDIR)${includedir}/cpufreq.h
  207. install-tools:
  208. $(INSTALL) -d $(DESTDIR)${bindir}
  209. $(INSTALL_PROGRAM) $(OUTPUT)cpupower $(DESTDIR)${bindir}
  210. install-man:
  211. $(INSTALL_DATA) -D man/cpupower.1 $(DESTDIR)${mandir}/man1/cpupower.1
  212. $(INSTALL_DATA) -D man/cpupower-frequency-set.1 $(DESTDIR)${mandir}/man1/cpupower-frequency-set.1
  213. $(INSTALL_DATA) -D man/cpupower-frequency-info.1 $(DESTDIR)${mandir}/man1/cpupower-frequency-info.1
  214. $(INSTALL_DATA) -D man/cpupower-set.1 $(DESTDIR)${mandir}/man1/cpupower-set.1
  215. $(INSTALL_DATA) -D man/cpupower-info.1 $(DESTDIR)${mandir}/man1/cpupower-info.1
  216. $(INSTALL_DATA) -D man/cpupower-monitor.1 $(DESTDIR)${mandir}/man1/cpupower-monitor.1
  217. install-gmo:
  218. $(INSTALL) -d $(DESTDIR)${localedir}
  219. for HLANG in $(LANGUAGES); do \
  220. echo '$(INSTALL_DATA) -D $(OUTPUT)po/$$HLANG.gmo $(DESTDIR)${localedir}/$$HLANG/LC_MESSAGES/cpupower.mo'; \
  221. $(INSTALL_DATA) -D $(OUTPUT)po/$$HLANG.gmo $(DESTDIR)${localedir}/$$HLANG/LC_MESSAGES/cpupower.mo; \
  222. done;
  223. install-bench:
  224. @#DESTDIR must be set from outside to survive
  225. @sbindir=$(sbindir) bindir=$(bindir) docdir=$(docdir) confdir=$(confdir) $(MAKE) -C bench O=$(OUTPUT) install
  226. install: all install-lib install-tools install-man $(INSTALL_NLS) $(INSTALL_BENCH)
  227. uninstall:
  228. - rm -f $(DESTDIR)${libdir}/libcpupower.*
  229. - rm -f $(DESTDIR)${includedir}/cpufreq.h
  230. - rm -f $(DESTDIR)${bindir}/utils/cpupower
  231. - rm -f $(DESTDIR)${mandir}/man1/cpufreq-set.1
  232. - rm -f $(DESTDIR)${mandir}/man1/cpufreq-info.1
  233. - for HLANG in $(LANGUAGES); do \
  234. rm -f $(DESTDIR)${localedir}/$$HLANG/LC_MESSAGES/cpupower.mo; \
  235. done;
  236. .PHONY: all utils libcpupower update-po create-gmo install-lib install-tools install-man install-gmo install uninstall clean