linux/debian/rules.d/tools/power/cpupower/Makefile

20 lines
632 B
Makefile
Raw Normal View History

2016-03-20 20:08:08 +00:00
include $(top_rulesdir)/Makefile.inc
MAKE_CPUPOWER := $(shell dpkg-buildflags --export=cmdline) $(MAKE) O=$(CURDIR) CPUFREQ_BENCH=false V=true mandir=/usr/share/man
MAKE_CPUPOWER += DEBUG=$(if $(findstring nostrip,$(DEB_BUILD_OPTIONS)),true,)
MAKE_CPUPOWER += PACKAGE_BUGREPORT='Debian\ \(reportbug\ linux-cpupower\)'
all:
$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower
install:
$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower install DESTDIR=$(DESTDIR)
ifneq (,$(filter nodoc,$(DEB_BUILD_PROFILES)))
rm -rf $(DESTDIR)/usr/share/man
endif
clean:
$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower clean