C tests are run via Makefile.singlesrc so don't run them twice.

llvm-svn: 3885
This commit is contained in:
Vikram S. Adve 2002-09-23 14:23:15 +00:00
parent 8e6e1816c0
commit b4e9f91b81
1 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,9 @@
LEVEL = ../../..
include $(LEVEL)/test/Programs/SingleSource/Makefile.singlesrc
TESTS := $(wildcard *.ll) $(wildcard *.c)
# Only .ll tests here. C tests are run via Makefile.singlesrc above.
#
TESTS := $(wildcard *.ll)
all:: $(addprefix Output/, $(filter-out %.c, $(TESTS:%.ll=%.ts)))