From b1f5cfe0c4ab46c4c2650cc583118241f93fb4e0 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Mon, 29 Dec 2003 22:02:12 +0000 Subject: [PATCH] Allow C++ programs to end in .cc. This allows C++ test programs in the test suite to compile. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10644 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile.rules | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.rules b/Makefile.rules index 1fbcf43ac04..2390897c6b3 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -364,7 +364,8 @@ AR = ${AR_PATH} cq # ifndef Source Source := $(notdir $(ExtraSource) $(wildcard $(SourceDir)/*.cpp \ - $(SourceDir)/*.c $(SourceDir)/*.y $(SourceDir)/*.l)) + $(SourceDir)/*.cc $(SourceDir)/*.c $(SourceDir)/*.y \ + $(SourceDir)/*.l)) endif # -- 2.34.1