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
|
||||
|
||||
all:
|
||||
for i in $(SUBDIRS); do pushd $$i && $(MAKE) all; popd; done
|
||||
|
||||
lesson1 :
|
||||
cd Lesson1; make
|
||||
|
||||
|
|
@ -9,8 +12,5 @@ lesson2 :
|
|||
lesson3 :
|
||||
cd Lesson3; make
|
||||
|
||||
all:
|
||||
for i in $(SUBDIRS); do pushd $$i && $(MAKE); popd; done
|
||||
|
||||
clean:
|
||||
for i in $(SUBDIRS); do pushd $$i && $(MAKE) clean; popd; done
|
||||
|
|
|
|||
Reference in a new issue