Revision 3c7acc56ca8e3e28de5772a228f6930083bad1e9 authored by Jameson Nash on 24 April 2017, 18:00:03 UTC, committed by Jameson Nash on 24 April 2017, 18:00:50 UTC
1 parent e14cf14
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