]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - tools/thermal/tmon/Makefile
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / tools / thermal / tmon / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 VERSION = 1.0
3
4 BINDIR=usr/bin
5 WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int
6 CFLAGS+= -O1 ${WARNFLAGS} -fstack-protector
7 CC=$(CROSS_COMPILE)gcc
8
9 CFLAGS+=-D VERSION=\"$(VERSION)\"
10 LDFLAGS+=
11 TARGET=tmon
12
13 INSTALL_PROGRAM=install -m 755 -p
14 DEL_FILE=rm -f
15
16 # Static builds might require -ltinfo, for instance
17 ifneq ($(findstring -static, $(LDFLAGS)),)
18 STATIC := --static
19 endif
20
21 TMON_LIBS=-lm -lpthread
22 TMON_LIBS += $(shell pkg-config --libs $(STATIC) panelw ncursesw 2> /dev/null || \
23 pkg-config --libs $(STATIC) panel ncurses 2> /dev/null || \
24 echo -lpanel -lncurses)
25
26 CFLAGS += $(shell pkg-config --cflags $(STATIC) panelw ncursesw 2> /dev/null || \
27 pkg-config --cflags $(STATIC) panel ncurses 2> /dev/null)
28
29 OBJS = tmon.o tui.o sysfs.o pid.o
30 OBJS +=
31
32 tmon: $(OBJS) Makefile tmon.h
33 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET) $(TMON_LIBS)
34
35 valgrind: tmon
36 sudo valgrind -v --track-origins=yes --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=20 --track-fds=yes ./$(TARGET) 1> /dev/null
37
38 install:
39 - mkdir -p $(INSTALL_ROOT)/$(BINDIR)
40 - $(INSTALL_PROGRAM) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
41
42 uninstall:
43 $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
44
45 clean:
46 find . -name "*.o" | xargs $(DEL_FILE)
47 rm -f $(TARGET)
48
49 dist:
50 git tag v$(VERSION)
51 git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
52 gzip > $(TARGET)-$(VERSION).tar.gz