Julia interface to hypre linear solvers (https://github.com/hypre-space/hypre)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
326 B

SRCDIR:=$(shell dirname $(abspath $(firstword $(MAKEFILE_LIST))))
default: livedocs
instantiate:
julia --project=${SRCDIR} -e 'using Pkg; Pkg.instantiate()'
livedocs: instantiate
julia --project=${SRCDIR} -e 'using LiveServer; LiveServer.servedocs(; foldername=pwd())' -- liveserver
.PHONY: default instantiate livedocs