paradiseo/eo/tutorial/Makefile
evomarc ca843a88fc Initial version of the tutorial.
Warning: the Makefil is hand-made, and only works in Linux
2000-11-29 18:06:09 +00:00

16 lines
260 B
Makefile

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