mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 23:32:58 +00:00
Add generation of asm writer from tablegen files to Makefile
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15740 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f8be5e94aa
commit
14d89d6810
@ -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