Change in Makefile - but again it should be replaced with clean Makefile.am

This commit is contained in:
evomarc 2001-02-09 05:46:12 +00:00
commit a556036315

View file

@ -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