From: Vikram S. Adve Date: Mon, 23 Sep 2002 14:23:15 +0000 (+0000) Subject: C tests are run via Makefile.singlesrc so don't run them twice. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=26d4a48ee684f1f8c276fd583de0cebbb7230f05;p=oota-llvm.git C tests are run via Makefile.singlesrc so don't run them twice. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3885 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/LLC/Makefile b/test/LLC/Makefile index 0aecc830901..b48c24ad60f 100644 --- a/test/LLC/Makefile +++ b/test/LLC/Makefile @@ -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)))