removed redundant index.html in html dir
This commit is contained in:
parent
4d77c9116f
commit
b685eb8048
3 changed files with 60 additions and 64 deletions
|
|
@ -1,4 +1,4 @@
|
|||
SUBDIRS = Lesson1 Lesson2 Lesson3
|
||||
SUBDIRS = Lesson1 Lesson2 Lesson3 Lesson4
|
||||
|
||||
lesson1 :
|
||||
cd Lesson1; make
|
||||
|
|
@ -9,6 +9,9 @@ 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