Linux-libre 5.3.12-gnu
[librecmc/linux-libre.git] / tools / power / cpupower / debug / kernel / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 obj-m   :=
3
4 KDIR    := /lib/modules/$(shell uname -r)/build
5 KMISC   := /lib/modules/$(shell uname -r)/cpufrequtils/
6
7 ifeq ("$(CONFIG_X86_TSC)", "y")
8   obj-m  += cpufreq-test_tsc.o
9 endif
10
11 default:
12         $(MAKE) -C $(KDIR) M=$(CURDIR)
13
14 clean:
15         - rm -rf *.o *.ko .*.cmd .*.mod.* *.mod.c
16         - rm -rf Module.symvers modules.order
17
18 install: default
19         install -d $(KMISC)
20         install -m 644 -c *.ko $(KMISC)
21         /sbin/depmod -a
22
23 all:    default