1 # We need this for the "cc-option" macro.
2 include ../../../scripts/Kbuild.include
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
13 CFLAGS+=-D VERSION=\"$(VERSION)\"
17 INSTALL_PROGRAM=install -m 755 -p
20 # Static builds might require -ltinfo, for instance
21 ifneq ($(findstring -static, $(LDFLAGS)),)
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)
30 CFLAGS += $(shell pkg-config --cflags $(STATIC) panelw ncursesw 2> /dev/null || \
31 pkg-config --cflags $(STATIC) panel ncurses 2> /dev/null)
33 OBJS = tmon.o tui.o sysfs.o pid.o
36 tmon: $(OBJS) Makefile tmon.h
37 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET) $(TMON_LIBS)
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
43 - mkdir -p $(INSTALL_ROOT)/$(BINDIR)
44 - $(INSTALL_PROGRAM) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
47 $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
50 find . -name "*.o" | xargs $(DEL_FILE)
55 git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
56 gzip > $(TARGET)-$(VERSION).tar.gz