tools/thermal: tmon: allow $(CC) to be defined externally
[sfrench/cifs-2.6.git] / tools / thermal / tmon / Makefile
1 # We need this for the "cc-option" macro.
2 include ../../../scripts/Kbuild.include
3
4 VERSION = 1.0
5
6 BINDIR=usr/bin
7 WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int
8 CFLAGS+= -O1 ${WARNFLAGS}
9 # Add "-fstack-protector" only if toolchain supports it.
10 CFLAGS+= $(call cc-option,-fstack-protector)
11 CC?= $(CROSS_COMPILE)gcc
12
13 CFLAGS+=-D VERSION=\"$(VERSION)\"
14 LDFLAGS+=
15 TARGET=tmon
16
17 INSTALL_PROGRAM=install -m 755 -p
18 DEL_FILE=rm -f
19
20 # Static builds might require -ltinfo, for instance
21 ifneq ($(findstring -static, $(LDFLAGS)),)
22 STATIC := --static
23 endif
24
25 TMON_LIBS=-lm -lpthread
26 TMON_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)
29
30 CFLAGS    += $(shell pkg-config --cflags $(STATIC) panelw ncursesw 2> /dev/null || \
31                      pkg-config --cflags $(STATIC) panel ncurses 2> /dev/null)
32
33 OBJS = tmon.o tui.o sysfs.o pid.o
34 OBJS +=
35
36 tmon: $(OBJS) Makefile tmon.h
37         $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS)  -o $(TARGET) $(TMON_LIBS)
38
39 valgrind: 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
42 install:
43         - mkdir -p $(INSTALL_ROOT)/$(BINDIR)
44         - $(INSTALL_PROGRAM) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
45
46 uninstall:
47         $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
48
49 clean:
50         find . -name "*.o" | xargs $(DEL_FILE)
51         rm -f $(TARGET)
52
53 dist:
54         git tag v$(VERSION)
55         git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
56                 gzip > $(TARGET)-$(VERSION).tar.gz