Merge remote-tracking branch 'asoc/fix/arizona' into asoc-linus
[sfrench/cifs-2.6.git] / tools / thermal / tmon / Makefile
1 VERSION = 1.0
2
3 BINDIR=usr/bin
4 WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int
5 CFLAGS+= -O1 ${WARNFLAGS} -fstack-protector
6 CC=$(CROSS_COMPILE)gcc
7
8 CFLAGS+=-D VERSION=\"$(VERSION)\"
9 LDFLAGS+=
10 TARGET=tmon
11
12 INSTALL_PROGRAM=install -m 755 -p
13 DEL_FILE=rm -f
14
15 # Static builds might require -ltinfo, for instance
16 ifneq ($(findstring -static, $(LDFLAGS)),)
17 STATIC := --static
18 endif
19
20 TMON_LIBS=-lm -lpthread
21 TMON_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)
24
25 CFLAGS    += $(shell pkg-config --cflags $(STATIC) panelw ncursesw 2> /dev/null || \
26                      pkg-config --cflags $(STATIC) panel ncurses 2> /dev/null)
27
28 OBJS = tmon.o tui.o sysfs.o pid.o
29 OBJS +=
30
31 tmon: $(OBJS) Makefile tmon.h
32         $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS)  -o $(TARGET) $(TMON_LIBS)
33
34 valgrind: tmon
35          sudo valgrind -v --track-origins=yes --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=20 --track-fds=yes ./$(TARGET)  1> /dev/null
36
37 install:
38         - mkdir -p $(INSTALL_ROOT)/$(BINDIR)
39         - $(INSTALL_PROGRAM) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
40
41 uninstall:
42         $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
43
44 clean:
45         find . -name "*.o" | xargs $(DEL_FILE)
46         rm -f $(TARGET)
47
48 dist:
49         git tag v$(VERSION)
50         git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
51                 gzip > $(TARGET)-$(VERSION).tar.gz