forked from OSchip/llvm-project
parent
4fa19e4047
commit
f5eb286707
|
@ -4,11 +4,13 @@ DIRS := lib Driver
|
|||
include $(LEVEL)/Makefile.common
|
||||
|
||||
test::
|
||||
cd test && $(MAKE) -f Makefile.parallel
|
||||
@ cd test && $(MAKE) -f Makefile.parallel
|
||||
|
||||
report::
|
||||
cd test && $(MAKE) -f Makefile.parallel report
|
||||
@ cd test && $(MAKE) -f Makefile.parallel report
|
||||
|
||||
clean::
|
||||
@rm -rf build
|
||||
@rm -rf `find test -name Output`
|
||||
@ rm -rf build
|
||||
@ cd test && $(MAKE) -f Makefile.parallel clean
|
||||
|
||||
.PHONY: test report clean
|
||||
|
|
|
@ -14,6 +14,6 @@ all::
|
|||
-print -exec ./TestRunner.sh {} \;
|
||||
|
||||
clean::
|
||||
rm -rf Output/
|
||||
@ rm -rf Output/
|
||||
|
||||
.PHONY: all clean
|
||||
|
|
|
@ -35,6 +35,6 @@ report: $(TESTS)
|
|||
@ cat $^
|
||||
|
||||
clean::
|
||||
rm -rf Output/
|
||||
@ rm -rf Output/
|
||||
|
||||
.PHONY: all report clean
|
||||
|
|
Loading…
Reference in New Issue