Modified the Makefile.am in main dir, and Makefile in tutorial dir to remove
all pushd/popd as they don't exist in Windows/bash
This commit is contained in:
parent
03308af599
commit
26481ab36b
2 changed files with 8 additions and 8 deletions
|
|
@ -1,7 +1,7 @@
|
|||
SUBDIRS = Lesson1 Lesson2 Lesson3 Lesson4
|
||||
|
||||
all:
|
||||
for i in $(SUBDIRS); do pushd $$i && $(MAKE) all; popd; done
|
||||
for i in $(SUBDIRS); do cd $$i && $(MAKE) all; cd ..; done
|
||||
|
||||
lesson1 :
|
||||
cd Lesson1; make
|
||||
|
|
@ -23,4 +23,4 @@ distdir :
|
|||
check :
|
||||
|
||||
clean:
|
||||
for i in $(SUBDIRS); do pushd $$i && $(MAKE) clean; popd; done
|
||||
for i in $(SUBDIRS); do cd $$i && $(MAKE) clean; cd ..; done
|
||||
|
|
|
|||
Reference in a new issue