Rename Makefile.target to Makefile.tests.

Make all a :: target.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1488 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vikram S. Adve 2001-12-15 01:04:39 +00:00
parent 15784de2e7
commit 1b654bd347

View File

@ -6,7 +6,7 @@ TESTS := $(wildcard *.ll)
LLCTESTS := $(shell /bin/ls *.ll | grep -v testswitch | grep -v opttest | grep -v xx | grep -v calltest | grep -v alloca | grep -v memory )
test all : testasmdis testopt testsparc
test all :: testasmdis testopt testsparc
@echo "All tests successfully completed!"
testasmdis : $(TESTS:%.ll=%.ll.asmdis)
@ -34,4 +34,4 @@ testsparc : $(LLCTESTS:%.ll=%.s)
## Rules for compiling %.ll, %.bc, %.s files and
## for building native SPARC executables.
##
include Makefile.target
include Makefile.tests