aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/cfrac/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/cfrac/Makefile')
-rw-r--r--src/benchmarks/cfrac/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/benchmarks/cfrac/Makefile b/src/benchmarks/cfrac/Makefile
new file mode 100644
index 0000000..3c42b66
--- /dev/null
+++ b/src/benchmarks/cfrac/Makefile
@@ -0,0 +1,10 @@
+OBJDIR ?= obj
+
+.PHONY = all clean
+
+all:
+ cmake -S $(shell pwd) -B $(OBJDIR)
+ make -C $(OBJDIR)
+
+clean:
+ rm -rf $(OBJDIR)