Makefile 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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. # --- CONFIGURATION BEGIN ---
  23. # Set the following to `true' to make a unstripped, unoptimized
  24. # binary. Leave this set to `false' for production use.
  25. DEBUG ?= true
  26. # make the build silent. Set this to something else to make it noisy again.
  27. V ?= false
  28. # Internationalization support (output in different languages).
  29. # Requires gettext.
  30. NLS ?= true
  31. # Set the following to 'true' to build/install the
  32. # cpufreq-bench benchmarking tool
  33. CPUFREQ_BENCH ?= true
  34. # Prefix to the directories we're installing to
  35. DESTDIR ?=
  36. # --- CONFIGURATION END ---
  37. # Package-related definitions. Distributions can modify the version
  38. # and _should_ modify the PACKAGE_BUGREPORT definition
  39. VERSION= $(shell ./utils/version-gen.sh)
  40. LIB_MAJ= 0.0.0
  41. LIB_MIN= 0
  42. PACKAGE = cpupower
  43. PACKAGE_BUGREPORT = cpufreq@vger.kernel.org
  44. LANGUAGES = de fr it cs pt
  45. # Directory definitions. These are default and most probably
  46. # do not need to be changed. Please note that DESTDIR is
  47. # added in front of any of them
  48. bindir ?= /usr/bin
  49. sbindir ?= /usr/sbin
  50. mandir ?= /usr/man
  51. includedir ?= /usr/include
  52. libdir ?= /usr/lib
  53. localedir ?= /usr/share/locale
  54. docdir ?= /usr/share/doc/packages/cpupower
  55. confdir ?= /etc/
  56. # Toolchain: what tools do we use, and what options do they need:
  57. CP = cp -fpR
  58. INSTALL = /usr/bin/install -c
  59. INSTALL_PROGRAM = ${INSTALL}
  60. INSTALL_DATA = ${INSTALL} -m 644
  61. INSTALL_SCRIPT = ${INSTALL_PROGRAM}
  62. # If you are running a cross compiler, you may want to set this
  63. # to something more interesting, like "arm-linux-". If you want
  64. # to compile vs uClibc, that can be done here as well.
  65. CROSS = #/usr/i386-linux-uclibc/usr/bin/i386-uclibc-
  66. CC = $(CROSS)gcc
  67. LD = $(CROSS)gcc
  68. AR = $(CROSS)ar
  69. STRIP = $(CROSS)strip
  70. RANLIB = $(CROSS)ranlib
  71. HOSTCC = gcc
  72. # Now we set up the build system
  73. #
  74. # set up PWD so that older versions of make will work with our build.
  75. PWD = $(shell pwd)
  76. GMO_FILES = ${shell for HLANG in ${LANGUAGES}; do echo po/$$HLANG.gmo; done;}
  77. export CROSS CC AR STRIP RANLIB CFLAGS LDFLAGS LIB_OBJS
  78. # check if compiler option is supported
  79. cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; fi;}
  80. # use '-Os' optimization if available, else use -O2
  81. OPTIMIZATION := $(call cc-supports,-Os,-O2)
  82. WARNINGS := -Wall -Wchar-subscripts -Wpointer-arith -Wsign-compare
  83. WARNINGS += $(call cc-supports,-Wno-pointer-sign)
  84. WARNINGS += $(call cc-supports,-Wdeclaration-after-statement)
  85. WARNINGS += -Wshadow
  86. CFLAGS += -DVERSION=\"$(VERSION)\" -DPACKAGE=\"$(PACKAGE)\" \
  87. -DPACKAGE_BUGREPORT=\"$(PACKAGE_BUGREPORT)\" -D_GNU_SOURCE
  88. UTIL_OBJS = utils/helpers/amd.o utils/helpers/topology.o utils/helpers/msr.o \
  89. utils/helpers/sysfs.o utils/helpers/misc.o utils/helpers/cpuid.o \
  90. utils/helpers/pci.o utils/helpers/bitmask.o \
  91. utils/idle_monitor/nhm_idle.o utils/idle_monitor/snb_idle.o \
  92. utils/idle_monitor/amd_fam14h_idle.o utils/idle_monitor/cpuidle_sysfs.o \
  93. utils/idle_monitor/mperf_monitor.o utils/idle_monitor/cpupower-monitor.o \
  94. utils/cpupower.o utils/cpufreq-info.o utils/cpufreq-set.o \
  95. utils/cpupower-set.o utils/cpupower-info.o utils/cpuidle-info.o
  96. UTIL_HEADERS = utils/helpers/helpers.h utils/idle_monitor/cpupower-monitor.h \
  97. utils/helpers/bitmask.h \
  98. utils/idle_monitor/idle_monitors.h utils/idle_monitor/idle_monitors.def
  99. UTIL_SRC := $(UTIL_OBJS:.o=.c)
  100. LIB_HEADERS = lib/cpufreq.h lib/sysfs.h
  101. LIB_SRC = lib/cpufreq.c lib/sysfs.c
  102. LIB_OBJS = lib/cpufreq.o lib/sysfs.o
  103. CFLAGS += -pipe
  104. ifeq ($(strip $(NLS)),true)
  105. INSTALL_NLS += install-gmo
  106. COMPILE_NLS += create-gmo
  107. CFLAGS += -DNLS
  108. endif
  109. ifeq ($(strip $(CPUFREQ_BENCH)),true)
  110. INSTALL_BENCH += install-bench
  111. COMPILE_BENCH += compile-bench
  112. endif
  113. CFLAGS += $(WARNINGS)
  114. ifeq ($(strip $(V)),false)
  115. QUIET=@
  116. ECHO=@echo
  117. else
  118. QUIET=
  119. ECHO=@\#
  120. endif
  121. export QUIET ECHO
  122. # if DEBUG is enabled, then we do not strip or optimize
  123. ifeq ($(strip $(DEBUG)),true)
  124. CFLAGS += -O1 -g -DDEBUG
  125. STRIPCMD = /bin/true -Since_we_are_debugging
  126. else
  127. CFLAGS += $(OPTIMIZATION) -fomit-frame-pointer
  128. STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
  129. endif
  130. # the actual make rules
  131. all: libcpupower cpupower $(COMPILE_NLS) $(COMPILE_BENCH)
  132. lib/%.o: $(LIB_SRC) $(LIB_HEADERS)
  133. $(ECHO) " CC " $@
  134. $(QUIET) $(CC) $(CFLAGS) -fPIC -o $@ -c lib/$*.c
  135. libcpupower.so.$(LIB_MAJ): $(LIB_OBJS)
  136. $(ECHO) " LD " $@
  137. $(QUIET) $(CC) -shared $(CFLAGS) $(LDFLAGS) -o $@ \
  138. -Wl,-soname,libcpupower.so.$(LIB_MIN) $(LIB_OBJS)
  139. @ln -sf $@ libcpupower.so
  140. @ln -sf $@ libcpupower.so.$(LIB_MIN)
  141. libcpupower: libcpupower.so.$(LIB_MAJ)
  142. # Let all .o files depend on its .c file and all headers
  143. # Might be worth to put this into utils/Makefile at some point of time
  144. $(UTIL_OBJS): $(UTIL_HEADERS)
  145. .c.o:
  146. $(ECHO) " CC " $@
  147. $(QUIET) $(CC) $(CFLAGS) -I./lib -I ./utils -o $@ -c $*.c
  148. cpupower: $(UTIL_OBJS) libcpupower.so.$(LIB_MAJ)
  149. $(ECHO) " CC " $@
  150. $(QUIET) $(CC) $(CFLAGS) $(LDFLAGS) -lcpupower -lrt -lpci -L. -o $@ $(UTIL_OBJS)
  151. $(QUIET) $(STRIPCMD) $@
  152. po/$(PACKAGE).pot: $(UTIL_SRC)
  153. $(ECHO) " GETTEXT " $@
  154. $(QUIET) xgettext --default-domain=$(PACKAGE) --add-comments \
  155. --keyword=_ --keyword=N_ $(UTIL_SRC) && \
  156. test -f $(PACKAGE).po && \
  157. mv -f $(PACKAGE).po po/$(PACKAGE).pot
  158. po/%.gmo: po/%.po
  159. $(ECHO) " MSGFMT " $@
  160. $(QUIET) msgfmt -o $@ po/$*.po
  161. create-gmo: ${GMO_FILES}
  162. update-po: po/$(PACKAGE).pot
  163. $(ECHO) " MSGMRG " $@
  164. $(QUIET) @for HLANG in $(LANGUAGES); do \
  165. echo -n "Updating $$HLANG "; \
  166. if msgmerge po/$$HLANG.po po/$(PACKAGE).pot -o \
  167. po/$$HLANG.new.po; then \
  168. mv -f po/$$HLANG.new.po po/$$HLANG.po; \
  169. else \
  170. echo "msgmerge for $$HLANG failed!"; \
  171. rm -f po/$$HLANG.new.po; \
  172. fi; \
  173. done;
  174. compile-bench: libcpupower.so.$(LIB_MAJ)
  175. @V=$(V) confdir=$(confdir) $(MAKE) -C bench
  176. clean:
  177. -find . \( -not -type d \) -and \( -name '*~' -o -name '*.[oas]' \) -type f -print \
  178. | xargs rm -f
  179. -rm -f $(UTIL_BINS)
  180. -rm -f $(IDLE_OBJS)
  181. -rm -f cpupower
  182. -rm -f libcpupower.so*
  183. -rm -rf po/*.gmo po/*.pot
  184. $(MAKE) -C bench clean
  185. install-lib:
  186. $(INSTALL) -d $(DESTDIR)${libdir}
  187. $(CP) libcpupower.so* $(DESTDIR)${libdir}/
  188. $(INSTALL) -d $(DESTDIR)${includedir}
  189. $(INSTALL_DATA) lib/cpufreq.h $(DESTDIR)${includedir}/cpufreq.h
  190. install-tools:
  191. $(INSTALL) -d $(DESTDIR)${bindir}
  192. $(INSTALL_PROGRAM) cpupower $(DESTDIR)${bindir}
  193. install-man:
  194. $(INSTALL_DATA) -D man/cpupower.1 $(DESTDIR)${mandir}/man1/cpupower.1
  195. $(INSTALL_DATA) -D man/cpupower-frequency-set.1 $(DESTDIR)${mandir}/man1/cpupower-frequency-set.1
  196. $(INSTALL_DATA) -D man/cpupower-frequency-info.1 $(DESTDIR)${mandir}/man1/cpupower-frequency-info.1
  197. $(INSTALL_DATA) -D man/cpupower-set.1 $(DESTDIR)${mandir}/man1/cpupower-set.1
  198. $(INSTALL_DATA) -D man/cpupower-info.1 $(DESTDIR)${mandir}/man1/cpupower-info.1
  199. $(INSTALL_DATA) -D man/cpupower-monitor.1 $(DESTDIR)${mandir}/man1/cpupower-monitor.1
  200. install-gmo:
  201. $(INSTALL) -d $(DESTDIR)${localedir}
  202. for HLANG in $(LANGUAGES); do \
  203. echo '$(INSTALL_DATA) -D po/$$HLANG.gmo $(DESTDIR)${localedir}/$$HLANG/LC_MESSAGES/cpupower.mo'; \
  204. $(INSTALL_DATA) -D po/$$HLANG.gmo $(DESTDIR)${localedir}/$$HLANG/LC_MESSAGES/cpupower.mo; \
  205. done;
  206. install-bench:
  207. @#DESTDIR must be set from outside to survive
  208. @sbindir=$(sbindir) bindir=$(bindir) docdir=$(docdir) confdir=$(confdir) $(MAKE) -C bench install
  209. install: all install-lib install-tools install-man $(INSTALL_NLS) $(INSTALL_BENCH)
  210. uninstall:
  211. - rm -f $(DESTDIR)${libdir}/libcpupower.*
  212. - rm -f $(DESTDIR)${includedir}/cpufreq.h
  213. - rm -f $(DESTDIR)${bindir}/utils/cpupower
  214. - rm -f $(DESTDIR)${mandir}/man1/cpufreq-set.1
  215. - rm -f $(DESTDIR)${mandir}/man1/cpufreq-info.1
  216. - for HLANG in $(LANGUAGES); do \
  217. rm -f $(DESTDIR)${localedir}/$$HLANG/LC_MESSAGES/cpupower.mo; \
  218. done;
  219. .PHONY: all utils libcpupower update-po create-gmo install-lib install-tools install-man install-gmo install uninstall clean