mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-02 02:14:23 +00:00
Add generation of asm writer from tablegen files to Makefile
llvm-svn: 15740
This commit is contained in:
parent
fabece673b
commit
56b50cb7e8
@ -15,7 +15,8 @@ TARGET = PowerPC
|
||||
# Make sure that tblgen is run, first thing.
|
||||
$(SourceDepend): PowerPCGenRegisterInfo.h.inc PowerPCGenRegisterNames.inc \
|
||||
PowerPCGenRegisterInfo.inc PowerPCGenInstrNames.inc \
|
||||
PowerPCGenInstrInfo.inc PowerPCGenCodeEmitter.inc
|
||||
PowerPCGenInstrInfo.inc PowerPCGenCodeEmitter.inc \
|
||||
PowerPCGenAsmWriter.inc
|
||||
|
||||
TDFILES = $(SourceDir)/$(TARGET).td $(wildcard $(SourceDir)/*.td) \
|
||||
$(SourceDir)/../Target.td
|
||||
@ -44,5 +45,9 @@ $(TARGET)GenCodeEmitter.inc:: $(TDFILES) $(TBLGEN)
|
||||
@echo "Building $(TARGET).td code emitter"
|
||||
$(VERB) $(TBLGEN) -I $(SourceDir) $< -gen-emitter -o $@
|
||||
|
||||
$(TARGET)GenAsmWriter.inc:: $(TDFILES) $(TBLGEN)
|
||||
@echo "Building $(TARGET).td assembly writer with tblgen"
|
||||
$(VERB) $(TBLGEN) -I $(SourceDir) $< -gen-asm-writer -o $@
|
||||
|
||||
clean::
|
||||
$(VERB) rm -f *.inc
|
||||
|
Loading…
x
Reference in New Issue
Block a user