From a55603631594efd0ee7a1abbdef2a94df4abdc94 Mon Sep 17 00:00:00 2001 From: evomarc Date: Fri, 9 Feb 2001 05:46:12 +0000 Subject: [PATCH] Change in Makefile - but again it should be replaced with clean Makefile.am --- eo/tutorial/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eo/tutorial/Makefile b/eo/tutorial/Makefile index fcdd0e0c..5912def5 100644 --- a/eo/tutorial/Makefile +++ b/eo/tutorial/Makefile @@ -1,5 +1,8 @@ SUBDIRS = Lesson1 Lesson2 Lesson3 +all: + for i in $(SUBDIRS); do pushd $$i && $(MAKE) all; popd; done + lesson1 : cd Lesson1; make @@ -9,8 +12,5 @@ lesson2 : 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