Rewrite targets/rules to generate files for just PowerPC or PPC{32,64}
[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): PowerPCGenInstrNames.inc PowerPCGenRegisterNames.inc \
17                  PowerPCGenCodeEmitter.inc PowerPCGenAsmWriter.inc \
18  PPC32GenRegisterInfo.h.inc PPC32GenRegisterInfo.inc PPC32GenInstrInfo.inc \
19  PPC64GenRegisterInfo.h.inc PPC64GenRegisterInfo.inc PPC64GenInstrInfo.inc
20
21 TDFILES = $(wildcard $(SourceDir)/*.td) $(SourceDir)/../Target.td
22
23 %GenRegisterNames.inc:: PPC32.td $(TDFILES) $(TBLGEN)
24         @echo "Building PowerPC register names with tblgen"
25         $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-enums -o $@
26
27 %GenRegisterInfo.h.inc:: %.td $(TDFILES) $(TBLGEN)
28         @echo "Building `basename $<` register information header with tblgen"
29         $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-desc-header -o $@
30
31 %GenRegisterInfo.inc:: %.td $(TDFILES) $(TBLGEN)
32         @echo "Building `basename $<` register information implementation with tblgen"
33         $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-desc -o $@
34
35 $(TARGET)GenInstrNames.inc:: PPC32.td $(TDFILES) $(TBLGEN)
36         @echo "Building $(TARGET) instruction names with tblgen"
37         $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-enums -o $@
38
39 %GenInstrInfo.inc:: %.td $(TDFILES) $(TBLGEN)
40         @echo "Building $(TARGET) instruction information with tblgen"
41         $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-desc -o $@
42
43 $(TARGET)GenCodeEmitter.inc:: PPC32.td $(TDFILES) $(TBLGEN)
44         @echo "Building $(TARGET) code emitter"
45         $(VERB) $(TBLGEN) -I $(SourceDir) $< -gen-emitter -o $@
46
47 $(TARGET)GenAsmWriter.inc:: PPC32.td $(TDFILES) $(TBLGEN)
48         @echo "Building $(TARGET).td assembly writer with tblgen"
49         $(VERB) $(TBLGEN) -I $(SourceDir) $< -gen-asm-writer -o $@
50
51 clean::
52         $(VERB) rm -f *.inc