mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
7ad3e063f5
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7511 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
533 B
Makefile
22 lines
533 B
Makefile
LEVEL = ../../..
|
|
LIBRARYNAME = x86
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
|
|
|
# Make sure that tblgen is run, first thing.
|
|
$(SourceDepend): X86GenRegisterInfo.h.inc X86GenRegisterNames.inc X86GenRegisterInfo.inc
|
|
|
|
X86GenRegisterNames.inc: $(wildcard *.td) $(TBLGEN)
|
|
$(TBLGEN) X86.td -gen-register-enums -o $@
|
|
|
|
X86GenRegisterInfo.h.inc: $(wildcard *.td) $(TBLGEN)
|
|
$(TBLGEN) X86.td -gen-register-desc-header -o $@
|
|
|
|
X86GenRegisterInfo.inc: $(wildcard *.td) $(TBLGEN)
|
|
$(TBLGEN) X86.td -gen-register-desc -o $@
|
|
|
|
clean::
|
|
$(VERB) rm -f *.inc
|
|
|