diff --git a/eo/tutorial/Makefile b/eo/tutorial/Makefile new file mode 100644 index 000000000..fcdd0e0cb --- /dev/null +++ b/eo/tutorial/Makefile @@ -0,0 +1,16 @@ +SUBDIRS = Lesson1 Lesson2 Lesson3 + +lesson1 : + cd Lesson1; make + +lesson2 : + cd Lesson2; make + +lesson3 : + cd Lesson3; make + +all: + for i in $(SUBDIRS); do pushd $$i && $(MAKE); popd; done + +clean: + for i in $(SUBDIRS); do pushd $$i && $(MAKE) clean; popd; done diff --git a/eo/tutorial/README b/eo/tutorial/README new file mode 100644 index 000000000..8cf3e0c75 --- /dev/null +++ b/eo/tutorial/README @@ -0,0 +1,13 @@ +Eo Tutorial - corresponding to EO version 0.9.2 + +To start the tutorial, read index.html in your favorite browser. + +Many things are missing, including many solutions for the exercises, +the introduction to EC and most of the Bottom-Up pages. +More important, all examples of this tutorial have only been tested +on a Linux computer, and the Makefile will not work with MS-Windows +systems. Any help is welcome! + +Be patient ... +evoMarc + diff --git a/eo/tutorial/index.html b/eo/tutorial/index.html new file mode 100644 index 000000000..81b87972b --- /dev/null +++ b/eo/tutorial/index.html @@ -0,0 +1,26 @@ + + +
+ + +But you are not in the right place!
+
You should better try to go to the html directory, for instance by
+clicking here.
+
+