From 8c82c8aa566b45bd02980c5e097fdae3405abbf4 Mon Sep 17 00:00:00 2001 From: evomarc Date: Fri, 5 Jan 2001 06:55:16 +0000 Subject: [PATCH] Removed Lesson4 from Makefile - it is not there yet, and generates an error --- eo/tutorial/Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/eo/tutorial/Makefile b/eo/tutorial/Makefile index d43f7495..fcdd0e0c 100644 --- a/eo/tutorial/Makefile +++ b/eo/tutorial/Makefile @@ -1,4 +1,4 @@ -SUBDIRS = Lesson1 Lesson2 Lesson3 Lesson4 +SUBDIRS = Lesson1 Lesson2 Lesson3 lesson1 : cd Lesson1; make @@ -9,9 +9,6 @@ lesson2 : lesson3 : cd Lesson3; make -lesson4 : - cd Lesson4; make - all: for i in $(SUBDIRS); do pushd $$i && $(MAKE); popd; done