tools beauty: Make the prctl option table generator catch all PR_ options
[linux-block.git] / tools / thermal / tmon / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
ec04aa3a
MM
2# We need this for the "cc-option" macro.
3include ../../../scripts/Kbuild.include
4
94f69966
JP
5VERSION = 1.0
6
7BINDIR=usr/bin
8WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int
ad6b474f 9override CFLAGS+= -O1 ${WARNFLAGS}
ec04aa3a 10# Add "-fstack-protector" only if toolchain supports it.
ad6b474f 11override CFLAGS+= $(call cc-option,-fstack-protector-strong)
c21568ff 12CC?= $(CROSS_COMPILE)gcc
501a5c71 13PKG_CONFIG?= pkg-config
94f69966 14
ad6b474f 15override CFLAGS+=-D VERSION=\"$(VERSION)\"
94f69966
JP
16LDFLAGS+=
17TARGET=tmon
18
19INSTALL_PROGRAM=install -m 755 -p
20DEL_FILE=rm -f
21
96a0d99c
BN
22# Static builds might require -ltinfo, for instance
23ifneq ($(findstring -static, $(LDFLAGS)),)
24STATIC := --static
25endif
26
27TMON_LIBS=-lm -lpthread
501a5c71
MM
28TMON_LIBS += $(shell $(PKG_CONFIG) --libs $(STATIC) panelw ncursesw 2> /dev/null || \
29 $(PKG_CONFIG) --libs $(STATIC) panel ncurses 2> /dev/null || \
96a0d99c 30 echo -lpanel -lncurses)
94f69966 31
ad6b474f 32override CFLAGS += $(shell $(PKG_CONFIG) --cflags $(STATIC) panelw ncursesw 2> /dev/null || \
501a5c71 33 $(PKG_CONFIG) --cflags $(STATIC) panel ncurses 2> /dev/null)
809b6ecb 34
94f69966
JP
35OBJS = tmon.o tui.o sysfs.o pid.o
36OBJS +=
37
38tmon: $(OBJS) Makefile tmon.h
96a0d99c 39 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET) $(TMON_LIBS)
94f69966
JP
40
41valgrind: tmon
42 sudo valgrind -v --track-origins=yes --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=20 --track-fds=yes ./$(TARGET) 1> /dev/null
43
44install:
45 - mkdir -p $(INSTALL_ROOT)/$(BINDIR)
46 - $(INSTALL_PROGRAM) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
94f69966
JP
47
48uninstall:
49 $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
94f69966
JP
50
51clean:
52 find . -name "*.o" | xargs $(DEL_FILE)
53 rm -f $(TARGET)
54
55dist:
56 git tag v$(VERSION)
57 git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
58 gzip > $(TARGET)-$(VERSION).tar.gz