Use make's -C option to enter directories.

Also, do not try to remove build/ dir when
cleaning, this does not exist any more.

llvm-svn: 48599
This commit is contained in:
Gabor Greif 2008-03-20 14:43:48 +00:00
parent f5eb286707
commit fc39f15802

View File

@ -4,13 +4,12 @@ DIRS := lib Driver
include $(LEVEL)/Makefile.common
test::
@ cd test && $(MAKE) -f Makefile.parallel
@ $(MAKE) -C test -f Makefile.parallel
report::
@ cd test && $(MAKE) -f Makefile.parallel report
@ $(MAKE) -C test -f Makefile.parallel report
clean::
@ rm -rf build
@ cd test && $(MAKE) -f Makefile.parallel clean
@ $(MAKE) -C test -f Makefile.parallel clean
.PHONY: test report clean