forked from masteringmatplotlib/apis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (21 loc) · 697 Bytes
/
Makefile
File metadata and controls
26 lines (21 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
INCLUDE_REPO=git@github.com:thorgisl/ipython-includes.git
INCLUDE_DIR=include
NOTEBOOK=notebooks/em-sample.ipynb
-include include/common.mk
# The following target is intended for use by project-creators only. When
# creating a new notebook project, add a copy of this Makefile and run this
# target to get the includes set up:
#
# $ make setup-submodule
setup-submodule:
git submodule add $(INCLUDE_REPO) $(INCLUDE_DIR)
# The 'setup' target needs to be run before the 'project-deps' target,
# so that the includes are present (done by 'make project-setup').
deps: project-deps
setup:
@git submodule init
@git submodule update
@make project-setup
.DEFAULT_GOAL :=
default: setup
make run