diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-01 20:50:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-01 20:50:54 +0000 |
commit | 51ed58d8af9dab6f8390c8e4251309070f4a756a (patch) | |
tree | 2b6c6a212690f3cb7823f93d9b4f4de4972f487b | |
parent | d86cbea0fb1236958e6de51ca541c1d3a5528c2d (diff) |
Fix makefile to work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3203 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/LLC/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LLC/Makefile b/test/LLC/Makefile index 2a3421eb37..0aecc83090 100644 --- a/test/LLC/Makefile +++ b/test/LLC/Makefile @@ -7,7 +7,7 @@ include $(LEVEL)/test/Programs/SingleSource/Makefile.singlesrc TESTS := $(wildcard *.ll) $(wildcard *.c) -all:: $(addprefix Output/, $(TESTS:%.ll=%.ts)) +all:: $(addprefix Output/, $(filter-out %.c, $(TESTS:%.ll=%.ts))) Output/%.ts: Output/%.bc $(LLC) Output/.dir @echo "======== Compiling $< ==========" |