Home | History | Annotate | Download | only in test

Lines Matching refs:Output

22 # output from gccas and gccld.
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
48 $(RM) -rf Output/
50 # Compile from X.c to Output/X.ll
51 Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES)
54 # Compile from X.cpp to Output/X.ll
55 Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
58 # Compile from X.cc to Output/X.ll
59 Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
62 # LLVM Assemble from Output/X.ll to Output/X.bc. Output/X.ll must have come
63 # from GCC output, so use GCCAS.
65 Output/%.bc: Output/%.ll $(LGCCAS)
68 # LLVM Assemble from X.ll to Output/X.bc. Because we are coming directly from
71 Output/%.bc: %.ll $(LLVMAS) Output/.dir