Loading...
1VERSION = 1.0
2
3BINDIR=usr/bin
4WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int
5CFLAGS+= -O1 ${WARNFLAGS} -fstack-protector
6CC=$(CROSS_COMPILE)gcc
7
8CFLAGS+=-D VERSION=\"$(VERSION)\"
9LDFLAGS+=
10TARGET=tmon
11
12INSTALL_PROGRAM=install -m 755 -p
13DEL_FILE=rm -f
14
15# 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)
24
25CFLAGS += $(shell pkg-config --cflags $(STATIC) panelw ncursesw 2> /dev/null || \
26 pkg-config --cflags $(STATIC) panel ncurses 2> /dev/null)
27
28OBJS = tmon.o tui.o sysfs.o pid.o
29OBJS +=
30
31tmon: $(OBJS) Makefile tmon.h
32 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET) $(TMON_LIBS)
33
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)"
40
41uninstall:
42 $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
43
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
1# SPDX-License-Identifier: GPL-2.0
2# We need this for the "cc-option" macro.
3include ../../../scripts/Kbuild.include
4
5VERSION = 1.0
6
7BINDIR=usr/bin
8WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int
9override CFLAGS+= $(call cc-option,-O3,-O1) ${WARNFLAGS}
10# Add "-fstack-protector" only if toolchain supports it.
11override CFLAGS+= $(call cc-option,-fstack-protector-strong)
12CC?= $(CROSS_COMPILE)gcc
13PKG_CONFIG?= pkg-config
14
15override CFLAGS+=-D VERSION=\"$(VERSION)\"
16LDFLAGS+=
17TARGET=tmon
18
19INSTALL_PROGRAM=install -m 755 -p
20DEL_FILE=rm -f
21
22# Static builds might require -ltinfo, for instance
23ifneq ($(findstring -static, $(LDFLAGS)),)
24STATIC := --static
25endif
26
27TMON_LIBS=-lm -lpthread
28TMON_LIBS += $(shell $(PKG_CONFIG) --libs $(STATIC) panelw ncursesw 2> /dev/null || \
29 $(PKG_CONFIG) --libs $(STATIC) panel ncurses 2> /dev/null || \
30 echo -lpanel -lncurses)
31
32override CFLAGS += $(shell $(PKG_CONFIG) --cflags $(STATIC) panelw ncursesw 2> /dev/null || \
33 $(PKG_CONFIG) --cflags $(STATIC) panel ncurses 2> /dev/null)
34
35OBJS = tmon.o tui.o sysfs.o pid.o
36OBJS +=
37
38tmon: $(OBJS) Makefile tmon.h
39 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET) $(TMON_LIBS)
40
41valgrind: tmon
42 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
44install:
45 - mkdir -p $(INSTALL_ROOT)/$(BINDIR)
46 - $(INSTALL_PROGRAM) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
47
48uninstall:
49 $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
50
51clean:
52 find . -name "*.o" | xargs $(DEL_FILE)
53 rm -f $(TARGET)
54
55dist:
56 git tag v$(VERSION)
57 git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
58 gzip > $(TARGET)-$(VERSION).tar.gz