Added gross hacks such as creating my own def-use map, and picking on Instruction...
[oota-llvm.git] / lib / Target / SparcV9 / Makefile
1 ##===- lib/Target/SparcV9/Makefile -------------------------*- Makefile -*-===##
2
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source License. See LICENSE.TXT for details.
7
8 ##===----------------------------------------------------------------------===##
9 LEVEL = ../../..
10 LIBRARYNAME = LLVMSparcV9
11 PARALLEL_DIRS = InstrSched LiveVar ModuloScheduling RegAlloc
12
13 BUILT_SOURCES = \
14   SparcV9CodeEmitter.inc \
15   SparcV9.burm.cpp 
16
17 include $(LEVEL)/Makefile.common
18
19 SparcV9.burg.in1 : $(BUILD_SRC_DIR)/SparcV9.burg.in
20         $(Echo) Pre-processing SparcV9.burg.in
21         $(Verb) $(CXX) -E $(CPP.Flags) -x c++ $< | $(SED) '/^#/d' | $(SED) 's/Ydefine/#define/' > $@
22
23 SparcV9.burm : SparcV9.burg.in1
24         $(Echo) Pre-processing SparcV9.burg.in
25         $(Verb) $(CXX) -E $(CPP.Flags) -x c++ $< | $(SED) '/^#/d' | $(SED) 's/^Xinclude/#include/' | $(SED) 's/^Xdefine/#define/' > $@
26
27 SparcV9.burm.cpp: SparcV9.burm
28         $(Echo) "Burging `basename $<`"
29         $(Verb) $(BURG) -I $< -o $@
30
31 SparcV9CodeEmitter.inc: $(BUILD_SRC_DIR)/SparcV9.td $(TDFiles) $(TBLGEN)
32         $(Echo) "Running tblgen on SparcV9.td"
33         $(Verb) $(TableGen) -gen-emitter -o $@ $<
34
35 clean::
36         $(Verb) $(RM) -f SparcV9CodeEmitter.inc SparcV9.burg.in1 SparcV9.burm SparcV9.burm.cpp
37