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
12 PKG_CONFIG?= pkg-config
14 CFLAGS+=-D VERSION=\"$(VERSION)\"
18 INSTALL_PROGRAM=install -m 755 -p
21 # Static builds might require -ltinfo, for instance
22 ifneq ($(findstring -static, $(LDFLAGS)),)
26 TMON_LIBS=-lm -lpthread
27 TMON_LIBS += $(shell $(PKG_CONFIG) --libs $(STATIC) panelw ncursesw 2> /dev/null || \
28 $(PKG_CONFIG) --libs $(STATIC) panel ncurses 2> /dev/null || \
29 echo -lpanel -lncurses)
31 CFLAGS += $(shell $(PKG_CONFIG) --cflags $(STATIC) panelw ncursesw 2> /dev/null || \
32 $(PKG_CONFIG) --cflags $(STATIC) panel ncurses 2> /dev/null)
34 OBJS = tmon.o tui.o sysfs.o pid.o
37 tmon: $(OBJS) Makefile tmon.h
38 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET) $(TMON_LIBS)
41 sudo valgrind -v --track-origins=yes --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=20 --track-fds=yes ./$(TARGET) 1> /dev/null
44 - mkdir -p $(INSTALL_ROOT)/$(BINDIR)
45 - $(INSTALL_PROGRAM) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
48 $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
51 find . -name "*.o" | xargs $(DEL_FILE)
56 git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
57 gzip > $(TARGET)-$(VERSION).tar.gz