forked from JuliaLang/www_old.julialang.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
21 lines (14 loc) · 654 Bytes
/
Makefile
File metadata and controls
21 lines (14 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
JULIAHOME=../julia-release
run:
@echo "$(shell tput bold)Launching dockerized site at http://localhost:4000$(shell tput sgr0)"
docker run --rm -v $(shell pwd):/srv/jekyll -v julialang_gems:/usr/lib/ruby/gems -it -p 4000:4000 jekyll/jekyll:pages jekyll serve --incremental
benchmarks: benchmarks.csv _includes/benchmarks.html _includes/benchmarks.svg
.PHONY: benchmarks
benchmarks.csv:
cp $(JULIAHOME)/test/perf/micro/benchmarks.csv .
_includes/benchmarks.html:
cp $(JULIAHOME)/test/perf/micro/benchmarks.html _includes
_includes/benchmarks.svg:
julia benchmarks.jl
clean:
rm benchmarks.csv _includes/benchmarks.html _includes/benchmarks.svg