aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/larson/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/larson/Makefile')
-rw-r--r--src/benchmarks/larson/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/benchmarks/larson/Makefile b/src/benchmarks/larson/Makefile
deleted file mode 100644
index 0bb9a5b..0000000
--- a/src/benchmarks/larson/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-OBJDIR ?= obj
-
-CXX ?= g++
-
-WARNFLAGS ?= -Wall -Wextra
-COMMONFLAGS ?= -fno-builtin -fPIC -DPIC -pthread
-OPTFLAGS ?= -O3 -DNDEBUG
-
-CXXFLAGS ?= $(OPTFLAGS) $(WARNFLAGS) $(COMMONFLAGS)
-
-LDXXFLAGS ?= -pthread -static-libgcc -static-libstdc++
-
-.PHONY: all clean
-
-all: $(OBJDIR)/larson
-
-$(OBJDIR)/larson: larson.cc | $(OBJDIR)
- @echo compiling $@...
- $(CXX) $(LDXXFLAGS) $(CXXFLAGS) -o $@ $<
-
-$(OBJDIR):
- mkdir -p $@
-
-clean:
- rm -rf $(OBJDIR)