Konstantin Demin
c3d09a3e94
imported from https://salsa.debian.org/kernel-team/linux.git commit 9d5cc9d9d6501d7f1dd7e194d4b245bd0b6c6a22 version 6.11.4-1
27 lines
830 B
Makefile
27 lines
830 B
Makefile
include $(top_rulesdir)/Makefile.inc
|
|
|
|
MAKE_CPUPOWER := CFLAGS='$(CFLAGS) $(CPPFLAGS)' LDFLAGS='$(LDFLAGS)' $(MAKE) O=$(CURDIR) CPUFREQ_BENCH=false V=true mandir=/usr/share/man
|
|
|
|
MAKE_CPUPOWER += DEBUG=$(if $(filter noopt,$(DEB_BUILD_OPTIONS)),true,)
|
|
|
|
# Don't strip binaries here; let dh_strip determine what to do
|
|
MAKE_CPUPOWER += STRIP=true
|
|
|
|
MAKE_CPUPOWER += CROSS='$(CROSS_COMPILE)'
|
|
|
|
MAKE_CPUPOWER += PACKAGE_BUGREPORT='Debian\ \(reportbug\ linux-cpupower\)'
|
|
|
|
MAKE_CPUPOWER += libdir=/usr/lib/$(DEB_HOST_MULTIARCH)
|
|
|
|
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
|