Initial version of the tutorial.

Warning: the Makefil is hand-made, and only works in Linux
This commit is contained in:
evomarc 2000-11-29 18:06:09 +00:00
commit ca843a88fc
3 changed files with 55 additions and 0 deletions

16
eo/tutorial/Makefile Normal file
View file

@ -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