summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-06-01 07:27:53 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-06-01 07:27:53 +0000
commit5b30ee1c13a742f0c1843f867a6f75680c14e894 (patch)
tree801f054167c8413b127189da498da90259d753cb /Makefile
parentad67a04e7591629b77fa843ebc9ff1206c2aa710 (diff)
downloadllvm-5b30ee1c13a742f0c1843f867a6f75680c14e894.tar.gz
llvm-5b30ee1c13a742f0c1843f867a6f75680c14e894.tar.bz2
llvm-5b30ee1c13a742f0c1843f867a6f75680c14e894.tar.xz
Make a shorthand target for running the llvm2cpp test suite. This test
suite is disabled by default because of the length of time it takes to run. To enable it certain command line fu must be used. This patch just encodes the command line fu as the magical "check-llvm2cpp" target. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28626 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 72f6e934c9..d917e58811 100644
--- a/Makefile
+++ b/Makefile
@@ -87,3 +87,5 @@ ifeq ($(BuildMode),Debug)
$(Echo) '*****' make an optimized build.
endif
+check-llvm2cpp:
+ $(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1