diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-24 17:58:18 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-24 17:58:18 +0200 |
| commit | de7208a60eca11aa8014e3a9b698e092322aea88 (patch) | |
| tree | 13323f839f63d0d363517af81de317f0ec17a415 /src/benchmarks/espresso/Makefile | |
| parent | 77ac9ce0a5c55d4f79f8fb8f7daa59ddb53cb507 (diff) | |
| download | allocbench-de7208a60eca11aa8014e3a9b698e092322aea88.tar.gz allocbench-de7208a60eca11aa8014e3a9b698e092322aea88.zip | |
add espresso benchmark
Diffstat (limited to 'src/benchmarks/espresso/Makefile')
| -rw-r--r-- | src/benchmarks/espresso/Makefile | 10 |
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) |
