blob: 3a961e998281b776a9e2e13e8995d99bd738217c [file] [log] [blame]
Jacob Pan94f69962013-10-14 16:02:27 -07001VERSION = 1.0
2
3BINDIR=usr/bin
4WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int
Brian Norris1b0eaa22015-02-17 18:18:34 -08005CFLAGS+= -O1 ${WARNFLAGS} -fstack-protector
6CC=$(CROSS_COMPILE)gcc
Jacob Pan94f69962013-10-14 16:02:27 -07007
8CFLAGS+=-D VERSION=\"$(VERSION)\"
9LDFLAGS+=
10TARGET=tmon
11
12INSTALL_PROGRAM=install -m 755 -p
13DEL_FILE=rm -f
14
Brian Norris96a0d992015-02-17 18:18:35 -080015# Static builds might require -ltinfo, for instance
16ifneq ($(findstring -static, $(LDFLAGS)),)
17STATIC := --static
18endif
19
20TMON_LIBS=-lm -lpthread
21TMON_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)
Jacob Pan94f69962013-10-14 16:02:27 -070024
Olaf Hering809b6ec2015-10-02 09:50:45 +000025CFLAGS += $(shell pkg-config --cflags $(STATIC) panelw ncursesw 2> /dev/null || \
26 pkg-config --cflags $(STATIC) panel ncurses 2> /dev/null)
27
Jacob Pan94f69962013-10-14 16:02:27 -070028OBJS = tmon.o tui.o sysfs.o pid.o
29OBJS +=
30
31tmon: $(OBJS) Makefile tmon.h
Brian Norris96a0d992015-02-17 18:18:35 -080032 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET) $(TMON_LIBS)
Jacob Pan94f69962013-10-14 16:02:27 -070033
34valgrind: 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
37install:
38 - mkdir -p $(INSTALL_ROOT)/$(BINDIR)
39 - $(INSTALL_PROGRAM) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
Jacob Pan94f69962013-10-14 16:02:27 -070040
41uninstall:
42 $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
Jacob Pan94f69962013-10-14 16:02:27 -070043
44clean:
45 find . -name "*.o" | xargs $(DEL_FILE)
46 rm -f $(TARGET)
47
48dist:
49 git tag v$(VERSION)
50 git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
51 gzip > $(TARGET)-$(VERSION).tar.gz