xref: /openbmc/linux/tools/thermal/tmon/Makefile (revision 6f52b16c)
1# SPDX-License-Identifier: GPL-2.0
2VERSION = 1.0
3
4BINDIR=usr/bin
5WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int
6CFLAGS+= -O1 ${WARNFLAGS} -fstack-protector
7CC=$(CROSS_COMPILE)gcc
8
9CFLAGS+=-D VERSION=\"$(VERSION)\"
10LDFLAGS+=
11TARGET=tmon
12
13INSTALL_PROGRAM=install -m 755 -p
14DEL_FILE=rm -f
15
16# Static builds might require -ltinfo, for instance
17ifneq ($(findstring -static, $(LDFLAGS)),)
18STATIC := --static
19endif
20
21TMON_LIBS=-lm -lpthread
22TMON_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
26CFLAGS    += $(shell pkg-config --cflags $(STATIC) panelw ncursesw 2> /dev/null || \
27		     pkg-config --cflags $(STATIC) panel ncurses 2> /dev/null)
28
29OBJS = tmon.o tui.o sysfs.o pid.o
30OBJS +=
31
32tmon: $(OBJS) Makefile tmon.h
33	$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS)  -o $(TARGET) $(TMON_LIBS)
34
35valgrind: 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
38install:
39	- mkdir -p $(INSTALL_ROOT)/$(BINDIR)
40	- $(INSTALL_PROGRAM) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
41
42uninstall:
43	$(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
44
45clean:
46	find . -name "*.o" | xargs $(DEL_FILE)
47	rm -f $(TARGET)
48
49dist:
50	git tag v$(VERSION)
51	git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
52		gzip > $(TARGET)-$(VERSION).tar.gz
53