aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/redis/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/redis/Makefile')
-rw-r--r--src/benchmarks/redis/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/benchmarks/redis/Makefile b/src/benchmarks/redis/Makefile
new file mode 100644
index 0000000..de72342
--- /dev/null
+++ b/src/benchmarks/redis/Makefile
@@ -0,0 +1,20 @@
+OBJDIR ?= obj
+
+unexport CC
+unexport CXX
+unexport WARNFLAGS
+unexport COMMONFLAGS
+unexport OPTFLAGS
+unexport CFLAGS
+unexport CXXFLAGS
+unexport LDFLAGS
+unexport LDXXFLAGS
+
+.PHONY = all clean
+
+all:
+ @echo building redis benchmark
+ ./build.sh $(OBJDIR) $(REDIS_VERSION)
+
+clean:
+ rm -rf $(OBJDIR)