Squashed 'third_party/matplotlib-cpp/' content from commit f994996
Change-Id: I2124d6ed85284acca42fc0e90f489f422e6e440a
git-subtree-dir: third_party/matplotlib-cpp
git-subtree-split: f994996e0724f30612154a26cbdc660ad9c51907
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e75d134
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,22 @@
+examples: minimal basic modern animation nonblock xkcd
+
+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
+
+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
+
+xkcd: examples/xkcd.cpp matplotlibcpp.h
+ cd examples && g++ xkcd.cpp -I/usr/include/python2.7 -lpython2.7 -o xkcd -std=c++11
+
+clean:
+ rm -f examples/{minimal,basic,modern,animation,nonblock,xkcd}