From: Chris Lattner Date: Mon, 2 Jun 2003 05:49:11 +0000 (+0000) Subject: Add support for C++ tests X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=707af6efecf6c4c949bc22a0d958daffc6ddedd9;p=oota-llvm.git Add support for C++ tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6540 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile.tests b/test/Makefile.tests index fc93463c746..8ae3465605c 100644 --- a/test/Makefile.tests +++ b/test/Makefile.tests @@ -87,6 +87,10 @@ Output/%.ll: $(SourceDir)%.c $(LCC1) Output/.dir $(INCLUDES) Output/%.ll: $(SourceDir)%.cpp $(LCC1XX) Output/.dir $(INCLUDES) $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ +# Compile from X.cc to Output/X.ll +Output/%.ll: $(SourceDir)%.cc $(LCC1XX) Output/.dir $(INCLUDES) + $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ + # LLVM Assemble from Output/X.ll to Output/X.bc. Output/X.ll must have come # from GCC output, so use GCCAS. #