Initial version of the tutorial.
Warning: the Makefil is hand-made, and only works in Linux
This commit is contained in:
parent
29b8f1153c
commit
ca843a88fc
3 changed files with 55 additions and 0 deletions
16
eo/tutorial/Makefile
Normal file
16
eo/tutorial/Makefile
Normal 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
|
||||
Reference in a new issue