1# We need this for the "cc-option" macro. 2include ../../../scripts/Kbuild.include 3 4VERSION = 1.0 5 6BINDIR=usr/bin 7WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int 8CFLAGS+= -O1 ${WARNFLAGS} 9# Add "-fstack-protector" only if toolchain supports it. 10CFLAGS+= $(call cc-option,-fstack-protector) 11CC?= $(CROSS_COMPILE)gcc 12 13CFLAGS+=-D VERSION=\"$(VERSION)\" 14LDFLAGS+= 15TARGET=tmon 16 17INSTALL_PROGRAM=install -m 755 -p 18DEL_FILE=rm -f 19 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) 29 30CFLAGS += $(shell pkg-config --cflags $(STATIC) panelw ncursesw 2> /dev/null || \ 31 pkg-config --cflags $(STATIC) panel ncurses 2> /dev/null) 32 33OBJS = tmon.o tui.o sysfs.o pid.o 34OBJS += 35 36tmon: $(OBJS) Makefile tmon.h 37 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET) $(TMON_LIBS) 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)" 45 46uninstall: 47 $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)" 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 57