Generate a code emitter for PowerPC as well, this will be used in the JIT.
[oota-llvm.git] / lib / Target / PowerPC / Makefile
1 ##===- lib/Target/PowerPC/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 = powerpc
11 include $(LEVEL)/Makefile.common
12
13 TARGET = PowerPC
14
15 # Make sure that tblgen is run, first thing.
16 $(SourceDepend): PowerPCGenRegisterInfo.h.inc PowerPCGenRegisterNames.inc \
17                  PowerPCGenRegisterInfo.inc PowerPCGenInstrNames.inc \
18                  PowerPCGenInstrInfo.inc PowerPCGenCodeEmitter.inc
19
20 TDFILES = $(SourceDir)/$(TARGET).td $(wildcard $(SourceDir)/*.td) \
21           $(SourceDir)/../Target.td
22
23 $(TARGET)GenRegisterNames.inc:: $(TDFILES) $(TBLGEN)
24         @echo "Building $(TARGET).td register names with tblgen"
25         $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-enums -o $@
26
27 $(TARGET)GenRegisterInfo.h.inc:: $(TDFILES) $(TBLGEN)
28         @echo "Building $(TARGET).td register information header with tblgen"
29         $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-desc-header -o $@
30
31 $(TARGET)GenRegisterInfo.inc:: $(TDFILES) $(TBLGEN)
32         @echo "Building $(TARGET).td register information implementation with tblgen"
33         $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-desc -o $@
34
35 $(TARGET)GenInstrNames.inc:: $(TDFILES) $(TBLGEN)
36         @echo "Building $(TARGET).td instruction names with tblgen"
37         $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-enums -o $@
38
39 $(TARGET)GenInstrInfo.inc:: $(TDFILES) $(TBLGEN)
40         @echo "Building $(TARGET).td instruction information with tblgen"
41         $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-desc -o $@
42
43 $(TARGET)GenCodeEmitter.inc:: $(TDFILES) $(TBLGEN)
44         @echo "Building $(TARGET).td code emitter"
45         $(VERB) $(TBLGEN) -I $(SourceDir) $< -gen-emitter -o $@
46
47 clean::
48         $(VERB) rm -f *.inc