aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/espresso/Makefile
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-08-24 17:58:18 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-08-24 17:58:18 +0200
commitde7208a60eca11aa8014e3a9b698e092322aea88 (patch)
tree13323f839f63d0d363517af81de317f0ec17a415 /src/benchmarks/espresso/Makefile
parent77ac9ce0a5c55d4f79f8fb8f7daa59ddb53cb507 (diff)
downloadallocbench-de7208a60eca11aa8014e3a9b698e092322aea88.tar.gz
allocbench-de7208a60eca11aa8014e3a9b698e092322aea88.zip
add espresso benchmark
Diffstat (limited to 'src/benchmarks/espresso/Makefile')
-rw-r--r--src/benchmarks/espresso/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/benchmarks/espresso/Makefile b/src/benchmarks/espresso/Makefile
new file mode 100644
index 0000000..3c42b66
--- /dev/null
+++ b/src/benchmarks/espresso/Makefile
@@ -0,0 +1,10 @@
+OBJDIR ?= obj
+
+.PHONY = all clean
+
+all:
+ cmake -S $(shell pwd) -B $(OBJDIR)
+ make -C $(OBJDIR)
+
+clean:
+ rm -rf $(OBJDIR)