4 WARNFLAGS
=-Wall
-Wshadow
-W
-Wformat
-Wimplicit-function-declaration
-Wimplicit-int
5 CFLAGS
+= -O1
${WARNFLAGS} -fstack-protector
8 CFLAGS
+=-D VERSION
=\"$(VERSION
)\"
12 INSTALL_PROGRAM
=install -m
755 -p
15 # Static builds might require -ltinfo, for instance
16 ifneq ($(findstring -static
, $(LDFLAGS
)),)
20 TMON_LIBS
=-lm
-lpthread
21 TMON_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
)
25 OBJS
= tmon.o tui.o sysfs.o pid.o
28 tmon
: $(OBJS
) Makefile tmon.h
29 $(CC
) $(CFLAGS
) $(LDFLAGS
) $(OBJS
) -o
$(TARGET
) $(TMON_LIBS
)
32 sudo valgrind
-v
--track-origins
=yes
--tool
=memcheck
--leak-check
=yes
--show-reachable
=yes
--num-callers
=20 --track-fds
=yes .
/$(TARGET
) 1> /dev
/null
35 - mkdir
-p
$(INSTALL_ROOT
)/$(BINDIR
)
36 - $(INSTALL_PROGRAM
) "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
39 $(DEL_FILE
) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
42 find .
-name
"*.o" | xargs
$(DEL_FILE
)
47 git archive
--format
=tar --prefix="$(TARGET)-$(VERSION)/" v
$(VERSION
) | \
48 gzip
> $(TARGET
)-$(VERSION
).
tar.gz