1 ##----------------------------------------------------------*- Makefile -*-===##
3 ## Common rules for generating, linking, and compiling via LLVM. This is
4 ## used to implement a robust testing framework for LLVM
6 ##-------------------------------------------------------------------------===##
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
16 # We do not want to make .d files for tests!
17 DISABLE_AUTO_DEPENDENCIES=1
19 include ${LEVEL}/Makefile.common
21 # Specify ENABLE_STATS on the command line to enable -stats and -time-passes
22 # output from gccas and gccld.
24 STATS = -stats -time-passes
29 # These files, which might be intermediate results, should not be deleted by
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
38 LCXXFLAGS += -O2 -Wall
40 FAILURE = $(LLVM_SRC_ROOT)/test/Failure.sh
41 TESTRUNR = @echo Running test: $<; \
42 PATH="$(LLVMTOOLCURRENT):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
43 $(LLVM_SRC_ROOT)/test/TestRunner.sh
45 LLCLIBS := $(LLCLIBS) -lm
51 # Compile from X.c to Output/X.ll
52 Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES)
53 -$(LLVMGCCWITHPATH) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@
55 # Compile from X.cpp to Output/X.ll
56 Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
57 -$(LLVMGXXWITHPATH) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
59 # Compile from X.cc to Output/X.ll
60 Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
61 -$(LLVMGXXWITHPATH) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
63 # LLVM Assemble from Output/X.ll to Output/X.bc. Output/X.ll must have come
64 # from GCC output, so use GCCAS.
66 Output/%.bc: Output/%.ll $(LGCCAS)
67 -$(LGCCAS) $(STATS) $< -o $@
69 # LLVM Assemble from X.ll to Output/X.bc. Because we are coming directly from
70 # LLVM source, use the non-transforming assembler.
72 Output/%.bc: %.ll $(LLVMAS) Output/.dir
73 -$(LLVMAS) -f $< -o $@
75 ## Cancel built-in implicit rules that override above rules