Change in Makefile - but again it should be replaced with clean Makefile.am
This commit is contained in:
parent
018db6689a
commit
a556036315
1 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,8 @@
|
||||||
SUBDIRS = Lesson1 Lesson2 Lesson3
|
SUBDIRS = Lesson1 Lesson2 Lesson3
|
||||||
|
|
||||||
|
all:
|
||||||
|
for i in $(SUBDIRS); do pushd $$i && $(MAKE) all; popd; done
|
||||||
|
|
||||||
lesson1 :
|
lesson1 :
|
||||||
cd Lesson1; make
|
cd Lesson1; make
|
||||||
|
|
||||||
|
|
@ -9,8 +12,5 @@ lesson2 :
|
||||||
lesson3 :
|
lesson3 :
|
||||||
cd Lesson3; make
|
cd Lesson3; make
|
||||||
|
|
||||||
all:
|
|
||||||
for i in $(SUBDIRS); do pushd $$i && $(MAKE); popd; done
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
for i in $(SUBDIRS); do pushd $$i && $(MAKE) clean; popd; done
|
for i in $(SUBDIRS); do pushd $$i && $(MAKE) clean; popd; done
|
||||||
|
|
|
||||||
Reference in a new issue