mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
110acbc6a4
The 'thermometer' tool allows to capture the temperature of a set of thermal zones defined in a configuration file at a specified rate. It is designed to have the lowest possible overhead. It will write the captured temperature per thermal zone per file so making easier to write a gnuplot script. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Tested-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Link: https://lore.kernel.org/r/20220420160933.347088-4-daniel.lezcano@linaro.org
26 lines
575 B
Makefile
26 lines
575 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for cgroup tools
|
|
|
|
ifeq ($(srctree),)
|
|
srctree := $(patsubst %/,%,$(dir $(CURDIR)))
|
|
srctree := $(patsubst %/,%,$(dir $(srctree)))
|
|
srctree := $(patsubst %/,%,$(dir $(srctree)))
|
|
# $(info Determined 'srctree' to be $(srctree))
|
|
endif
|
|
|
|
CFLAGS = -Wall -Wextra
|
|
CFLAGS += -I$(srctree)/tools/thermal/lib
|
|
|
|
LDFLAGS = -L$(srctree)/tools/thermal/lib
|
|
LDFLAGS += -lthermal_tools
|
|
LDFLAGS += -lconfig
|
|
|
|
VERSION = 0.0.1
|
|
TARGET=thermometer
|
|
|
|
all: $(TARGET)
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -D VERSION=\"$(VERSION)\" -o $@ $^ $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) $(TARGET)
|