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