aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/larson
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/larson')
-rw-r--r--src/benchmarks/larson/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/benchmarks/larson/Makefile b/src/benchmarks/larson/Makefile
index 9ccce9f..0bb9a5b 100644
--- a/src/benchmarks/larson/Makefile
+++ b/src/benchmarks/larson/Makefile
@@ -15,10 +15,11 @@ LDXXFLAGS ?= -pthread -static-libgcc -static-libstdc++
all: $(OBJDIR)/larson
$(OBJDIR)/larson: larson.cc | $(OBJDIR)
+ @echo compiling $@...
$(CXX) $(LDXXFLAGS) $(CXXFLAGS) -o $@ $<
$(OBJDIR):
- mkdir $@
+ mkdir -p $@
clean:
rm -rf $(OBJDIR)