forked from lava/matplotlib-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (21 loc) · 1.35 KB
/
Makefile
File metadata and controls
31 lines (21 loc) · 1.35 KB
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
27
28
29
30
31
examples: minimal basic modern animation nonblock xkcd quiver bar surface
minimal: examples/minimal.cpp matplotlibcpp.h
cd examples && g++ -DWITHOUT_NUMPY minimal.cpp -I/usr/include/python2.7 -lpython2.7 -o minimal -std=c++11
basic: examples/basic.cpp matplotlibcpp.h
cd examples && g++ basic.cpp -I/usr/include/python2.7 -lpython2.7 -o basic -std=c++11
modern: examples/modern.cpp matplotlibcpp.h
cd examples && g++ modern.cpp -I/usr/include/python2.7 -lpython2.7 -o modern -std=c++11
animation: examples/animation.cpp matplotlibcpp.h
cd examples && g++ animation.cpp -I/usr/include/python2.7 -lpython2.7 -o animation -std=c++11
nonblock: examples/nonblock.cpp matplotlibcpp.h
cd examples && g++ nonblock.cpp -I/usr/include/python2.7 -lpython2.7 -o nonblock -std=c++11
quiver: examples/quiver.cpp matplotlibcpp.h
cd examples && g++ quiver.cpp -I/usr/include/python2.7 -lpython2.7 -o quiver -std=c++11
xkcd: examples/xkcd.cpp matplotlibcpp.h
cd examples && g++ xkcd.cpp -I/usr/include/python2.7 -lpython2.7 -o xkcd -std=c++11
bar: examples/bar.cpp matplotlibcpp.h
cd examples && g++ bar.cpp -I/usr/include/python2.7 -lpython2.7 -o bar -std=c++11
surface: examples/surface.cpp matplotlibcpp.h
cd examples && g++ surface.cpp -I/usr/include/python2.7 -lpython2.7 -o surface -std=c++11
clean:
rm -f examples/{minimal,basic,modern,animation,nonblock,xkcd,quiver,bar}