Revision f56147de67bbf098de22f224b872d6df1fcbab88 authored by Tony Kelman on 24 April 2017, 18:38:11 UTC, committed by GitHub on 24 April 2017, 18:38:11 UTC
Fixed the algorithm for powers of a matrix.
2 parent s 8df5fbe + 2fbeba3
Raw File
Makefile
## this is a simple wrapper just to forward on known commands to the
## embedding example with values pulled from Make.inc
SRCDIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
JULIAHOME := $(abspath $(SRCDIR)/..)
BUILDDIR := .
include $(JULIAHOME)/Make.inc

release: # default target
# forward all variables expected by the embedding example
JULIA:=$(call spawn,$(JULIA_EXECUTABLE))
BIN:=$(BUILDDIR)/embedding
CC:=$(CC)
include $(SRCDIR)/embedding/Makefile
back to top