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