Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / tools / thermal / thermal-engine / Makefile
blob6bd05ff894855a368a3be4007b4d11b9a8ed087e
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for thermal tools
4 ifeq ($(srctree),)
5 srctree := $(patsubst %/,%,$(dir $(CURDIR)))
6 srctree := $(patsubst %/,%,$(dir $(srctree)))
7 srctree := $(patsubst %/,%,$(dir $(srctree)))
8 # $(info Determined 'srctree' to be $(srctree))
9 endif
11 CFLAGS = -Wall -Wextra
12 CFLAGS += -I$(srctree)/tools/thermal/lib
13 CFLAGS += -I$(srctree)/tools/lib/thermal/include
15 LDFLAGS = -L$(srctree)/tools/thermal/lib
16 LDFLAGS += -L$(srctree)/tools/lib/thermal
17 LDFLAGS += -lthermal_tools
18 LDFLAGS += -lthermal
19 LDFLAGS += -lconfig
20 LDFLAGS += -lnl-genl-3 -lnl-3
22 VERSION = 0.0.1
24 all: thermal-engine
25 %: %.c
26 $(CC) $(CFLAGS) -D VERSION=\"$(VERSION)\" -o $@ $^ $(LDFLAGS)
27 clean:
28 $(RM) thermal-engine