Remove dead definitions of NATGCC and CP, and dead .tll, .tbc rules.
[oota-llvm.git] / test / Makefile.tests
1 ##----------------------------------------------------------*- Makefile -*-===##
2 ##
3 ## Common rules for generating, linking, and compiling via LLVM.  This is
4 ## used to implement a robust testing framework for LLVM
5 ##
6 ##-------------------------------------------------------------------------===##
7
8 # If the user specified a TEST= option on the command line, we do not want to do
9 # the default testing type.  Instead, we change the default target to be the
10 # test:: target.
11 #
12 ifdef TEST
13 test::
14 endif
15
16 # We do not want to make .d files for tests! 
17 DISABLE_AUTO_DEPENDENCIES=1
18
19 include ${LEVEL}/Makefile.common
20
21 # Specify ENABLE_STATS on the command line to enable -stats and -time-passes
22 # output from gccas and gccld.
23 ifdef ENABLE_STATS
24 STATS = -stats -time-passes
25 endif
26
27 .PHONY: clean default
28
29 # These files, which might be intermediate results, should not be deleted by
30 # make
31 .PRECIOUS: Output/%.bc  Output/%.ll
32 .PRECIOUS: Output/%.tbc Output/%.tll
33 .PRECIOUS: Output/.dir
34 .PRECIOUS: Output/%.llvm.bc
35 .PRECIOUS: Output/%.llvm
36
37 TOOLS    = $(LLVMTOOLCURRENT)
38
39 # LLVM Tool Definitions...
40 #
41 LCC      = $(LLVMGCC)   ## FIXME: remove these definitions, use LLVMGCC directly
42 LCXX     = $(LLVMGXX)   ## FIXME: remove these definitions, use LLVMGXX directly
43 LAS      = $(LLVMAS)    ## FIXME: remove these definitions, use LLVMAS directly
44
45 LLI      = $(TOOLS)/lli
46 LLC      = $(TOOLS)/llc
47 LGCCAS   = $(TOOLS)/gccas
48 LGCCLD   = $(LGCCLDPROG) -L$(LLVMGCCDIR)/lib/gcc/$(LLVMGCCARCH) -L$(LLVMGCCDIR)/lib
49 LDIS     = $(TOOLS)/llvm-dis 
50 LOPT     = $(TOOLS)/opt
51 LLINK    = $(TOOLS)/llvm-link
52 LANALYZE = $(TOOLS)/analyze
53 LBUGPOINT= $(TOOLS)/bugpoint
54
55 LCCFLAGS  += -O2 -Wall
56 LCXXFLAGS += -O2 -Wall
57 LLCFLAGS =
58 FAILURE  = $(LLVM_SRC_ROOT)/test/Failure.sh
59 TESTRUNR = @echo Running test: $<; \
60              PATH=$(LLVMTOOLCURRENT):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH) \
61                   $(LLVM_SRC_ROOT)/test/TestRunner.sh
62
63 ## If TRACE or TRACEM is "yes", set the appropriate llc flag (-trace or -tracem)
64 ## mark that tracing on, and set the TRACELIBS variable.
65 TRACEFLAGS = 
66 ifeq ($(TRACE), yes)
67     TRACEFLAGS = -trace
68     TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)
69 endif
70
71 ifeq ($(TRACEM), yes)
72     TRACEFLAGS = -tracem
73     TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)
74 endif
75
76 LLCLIBS := $(LLCLIBS) -lm
77
78 clean::
79         $(RM) -f a.out core
80         $(RM) -rf Output/
81
82 # Compile from X.c to Output/X.ll
83 Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES)
84         -$(LLVMGCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@
85
86 # Compile from X.cpp to Output/X.ll
87 Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
88         -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
89
90 # Compile from X.cc to Output/X.ll
91 Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
92         -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
93
94 # LLVM Assemble from Output/X.ll to Output/X.bc.  Output/X.ll must have come
95 # from GCC output, so use GCCAS.
96 #
97 Output/%.bc: Output/%.ll $(LGCCAS)
98         -$(LLVMAS) $(STATS) $< -o $@
99
100 # LLVM Assemble from X.ll to Output/X.bc.  Because we are coming directly from
101 # LLVM source, use the non-transforming assembler.
102 #
103 Output/%.bc: %.ll $(LLVMAS) Output/.dir
104         -$(LLVMAS) -f $< -o $@
105
106 ## Cancel built-in implicit rules that override above rules
107 %: %.s
108
109 %: %.c
110
111 %.o: %.c
112