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 12PKG_CONFIG?= pkg-config 13 14CFLAGS+=-D VERSION=\"$(VERSION)\" 15LDFLAGS+= 16TARGET=tmon 17 18INSTALL_PROGRAM=install -m 755 -p 19DEL_FILE=rm -f 20 21# Static builds might require -ltinfo, for instance 22ifneq ($(findstring -static, $(LDFLAGS)),) 23STATIC := --static 24endif 25 26TMON_LIBS=-lm -lpthread 27TMON_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) 30 31CFLAGS += $(shell $(PKG_CONFIG) --cflags $(STATIC) panelw ncursesw 2> /dev/null || \ 32 $(PKG_CONFIG) --cflags $(STATIC) panel ncurses 2> /dev/null) 33 34OBJS = tmon.o tui.o sysfs.o pid.o 35OBJS += 36 37tmon: $(OBJS) Makefile tmon.h 38 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET) $(TMON_LIBS) 39 40valgrind: tmon 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 42 43install: 44 - mkdir -p $(INSTALL_ROOT)/$(BINDIR) 45 - $(INSTALL_PROGRAM) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)" 46 47uninstall: 48 $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)" 49 50clean: 51 find . -name "*.o" | xargs $(DEL_FILE) 52 rm -f $(TARGET) 53 54dist: 55 git tag v$(VERSION) 56 git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \ 57 gzip > $(TARGET)-$(VERSION).tar.gz 58