aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/falsesharing/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/falsesharing/Makefile')
-rw-r--r--src/benchmarks/falsesharing/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/benchmarks/falsesharing/Makefile b/src/benchmarks/falsesharing/Makefile
deleted file mode 100644
index 2058b05..0000000
--- a/src/benchmarks/falsesharing/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-OBJDIR ?= obj
-
-CXX ?= g++
-
-WARNFLAGS ?= -Wall -Wextra
-COMMONFLAGS ?= -fno-builtin -fPIC -DPIC -pthread -g
-OPTFLAGS ?= -O0
-
-CXXFLAGS ?= $(OPTFLAGS) $(WARNFLAGS) $(COMMONFLAGS)
-
-LDXXFLAGS ?= -pthread -static-libgcc -static-libstdc++
-
-HEADER = cpuinfo.h fred.h timer.h
-
-.PHONY = all clean
-
-all: $(OBJDIR)/cache-thrash $(OBJDIR)/cache-scratch
-
-$(OBJDIR)/cache-thrash: cache-thrash.cc $(HEADER) | $(OBJDIR)
- @echo compiling $@...
- $(CXX) $(LDXXFLAGS) $(CXXFLAGS) -o $@ $<
-
-$(OBJDIR)/cache-scratch: cache-scratch.cc $(HEADER) | $(OBJDIR)
- @echo compiling $@...
- $(CXX) $(LDXXFLAGS) $(CXXFLAGS) -o $@ $<
-
-$(OBJDIR):
- mkdir -p $@
-
-clean:
- rm -rf $(OBJDIR)