diff options
author | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2020-07-03 21:12:06 +0000 |
---|---|---|
committer | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2020-07-03 21:12:06 +0000 |
commit | cd8cf9ba138c56356fe078842145cb863a256428 (patch) | |
tree | e0a34f1044f070f61e5fa8617d64b43c6f01e4ae | |
parent | 979f37ab3e3cf15b633259af5b79a68732e82f30 (diff) | |
download | fpc-cd8cf9ba138c56356fe078842145cb863a256428.tar.gz |
+ add intrdat target
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@45726 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r-- | compiler/Makefile.fpc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/compiler/Makefile.fpc b/compiler/Makefile.fpc index 4256a953c6..cf7c2cfe66 100644 --- a/compiler/Makefile.fpc +++ b/compiler/Makefile.fpc @@ -758,6 +758,16 @@ regdatz80 : z80/z80reg.dat regdat : regdatx86 regdatarm regdatsp regdatavr regdataarch64 regdatmips regdatsp64 regdatz80 +intrdatx86 : x86/x86intr.dat + $(COMPILER) -FE$(COMPILERUTILSDIR) $(COMPILERUTILSDIR)/mkx86inl.pp + cd x86 && ..$(PATHSEP)utils$(PATHSEP)mkx86inl$(SRCEXEEXT) + cp -f x86/cpummprocs.inc ../rtl/x86_64 + cp -f x86/cpumminnr.inc ../rtl/x86_64 + cp -f x86/cpummprocs.inc ../rtl/i386 + cp -f x86/cpumminnr.inc ../rtl/i386 + +intrdat : intrdatx86 + # revision.inc rule revision.inc : ifneq ($(REVSTR),) |