From 9aff870b9fd6ccd4d756c4764e2377a51d840658 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Sj=C3=B6lund?= <martin.sjolund@liu.se> Date: Thu, 3 Oct 2019 14:15:06 +0200 Subject: [PATCH] Add a makefile target to open the Julia shell --- julia/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/julia/Makefile b/julia/Makefile index c1bebfc..8b65272 100644 --- a/julia/Makefile +++ b/julia/Makefile @@ -3,6 +3,9 @@ run: julia-1.0.4/bin/julia $< run.jl +shell: julia-1.0.4/bin/julia + $< + julia-1.0.4/bin/julia: julia-1.0.4-linux-x86_64.tar.gz tar xzf $< $@ -e 'using Pkg; Pkg.add("BenchmarkTools"); Pkg.add("StatProfilerHTML")' -- GitLab