Removed Lesson4 from Makefile - it is not there yet, and generates an error
This commit is contained in:
parent
1beb08c39d
commit
8c82c8aa56
1 changed files with 1 additions and 4 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Reference in a new issue