mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-08-21 16:31:14 +02:00

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
575 B
575 B
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)