Removed Lesson4 from Makefile - it is not there yet, and generates an error

This commit is contained in:
evomarc 2001-01-05 06:55:16 +00:00
commit 8c82c8aa56

View file

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