summaryrefslogtreecommitdiff
path: root/compiler/Makefile.fpc
diff options
context:
space:
mode:
authorpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2021-03-06 10:42:50 +0000
committerpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2021-03-06 10:42:50 +0000
commitd9bcb8722ad5f93c2f67972d6659818fb76df2f3 (patch)
tree8214743f696c641dd4a1a72509c834ee62600575 /compiler/Makefile.fpc
parent94a92fdd34f4bb37a26efa0687d7ba705113dfe5 (diff)
downloadfpc-d9bcb8722ad5f93c2f67972d6659818fb76df2f3.tar.gz
Add new make rule named full_targets
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@48882 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/Makefile.fpc')
-rw-r--r--compiler/Makefile.fpc8
1 files changed, 6 insertions, 2 deletions
diff --git a/compiler/Makefile.fpc b/compiler/Makefile.fpc
index ca4f258604..946161e4e5 100644
--- a/compiler/Makefile.fpc
+++ b/compiler/Makefile.fpc
@@ -839,7 +839,7 @@ endif
#
#####################################################################
-.PHONY: cycle fullcycle wpocycle
+.PHONY: cycle full full_targets fullcycle wpocycle
ifeq ($(CPU_SOURCE),$(PPC_TARGET))
@@ -1044,7 +1044,8 @@ cvstest:
# unless FPC_SUPPORT_X87_TYPES_ON_WIN64 is set,
# win64 cannot compile i386 or i8086 compiler
# This is also the case for other CPUs that don't support
-# 80bit real type.
+# 80bit real type, unless -dFPC_SOFT_FPUX80
+# option is used.
ifeq ($(findstring -dFPC_SOFT_FPUX80,$(LOCALOPT)),)
ifeq ($(OS_SOURCE),win64)
@@ -1074,6 +1075,9 @@ ifdef DOWPOCYCLE
endif
$(MAKE) $(FULL_TARGETS) 'FPC=$(BASEDIR)/$(EXENAMEPREFIX)$(EXENAME)'
+full_targets:
+ $(MAKE) $(FULL_TARGETS)
+
#####################################################################
# Docs
#####################################################################