cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Makefile (1686B)


      1# SPDX-License-Identifier: GPL-2.0
      2# We need this for the "cc-option" macro.
      3include ../../build/Build.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?= $(CROSS_COMPILE)pkg-config
     14
     15override CFLAGS+=-D VERSION=\"$(VERSION)\"
     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
     31override CFLAGS += $(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
     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	- $(INSTALL_PROGRAM) -D "$(TARGET)" "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
     44
     45uninstall:
     46	$(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/$(TARGET)"
     47
     48clean:
     49	rm -f $(TARGET) $(OBJS)
     50
     51dist:
     52	git tag v$(VERSION)
     53	git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
     54		gzip > $(TARGET)-$(VERSION).tar.gz