mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 23:48:07 +02:00

C Makefile C Makefile.fpc --- Recording mergeinfo for merge of r49045 into '.': U . Summary of conflicts: Text conflicts: 2 # revisions: 49045 r49045 | jonas | 2021-03-24 15:33:09 +0100 (Wed, 24 Mar 2021) | 1 line Changed paths: M /trunk/Makefile M /trunk/Makefile.fpc * support building with FPC 3.2.2 git-svn-id: branches/fixes_3_2@49384 -
182 lines
5.8 KiB
Makefile
182 lines
5.8 KiB
Makefile
#
|
|
# Makefile.fpc for running fpmake
|
|
#
|
|
[package]
|
|
name=ide
|
|
version=3.2.3
|
|
|
|
[require]
|
|
packages=rtl fpmkunit rtl-extra fv chm regexpr
|
|
packages_go32v2=graph
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
fpcsubdir=ide
|
|
|
|
[default]
|
|
fpcdir=../..
|
|
|
|
[prerules]
|
|
# Translate INSTALL_UNITDIR to fpmake's --unitinstalldir parameter
|
|
ifdef INSTALL_UNITDIR
|
|
FPMAKE_INSTALL_OPT+=--unitinstalldir=$(INSTALL_UNITDIR)
|
|
endif
|
|
ifdef INSTALL_BINDIR
|
|
FPMAKE_INSTALL_OPT+=--bininstalldir=$(INSTALL_BINDIR)
|
|
endif
|
|
|
|
# Translate OS_TARGET and CPU_TARGET to fpmake's --os and --cpu parameters
|
|
ifdef OS_TARGET
|
|
FPC_TARGETOPT+=--os=$(OS_TARGET)
|
|
endif
|
|
ifdef CPU_TARGET
|
|
FPC_TARGETOPT+=--cpu=$(CPU_TARGET)
|
|
endif
|
|
FPMAKE_BIN_CLEAN=$(wildcard ./fpmake$(SRCEXEEXT))
|
|
LOCALFPMAKE=./fpmake$(SRCEXEEXT)
|
|
# do not add -d$(CPU_TARGET)
|
|
override NOCPUDEF=1
|
|
# This list should be the same as in fpcbuild/Makefile.fpc and in fpcsrc/Makefile.fpc
|
|
GDBMI_DEFAULT_OS_LIST=aix darwin freebsd haiku linux netbsd openbsd solaris win32 win64
|
|
|
|
[rules]
|
|
# Do not pass the Makefile's unit and binary target locations. Fpmake uses it's own.
|
|
override FPCOPT:=$(filter-out -FU%,$(FPCOPT))
|
|
override FPCOPT:=$(filter-out -FE%,$(FPCOPT))
|
|
# Do not pass the package-unitdirectories. Fpmake adds those and this way they don't apear in the .fpm
|
|
override FPCOPT:=$(filter-out $(addprefix -Fu,$(COMPILER_UNITDIR)),$(FPCOPT))# Compose general fpmake-parameters
|
|
# Compose general fpmake-parameters
|
|
ifdef FPMAKEOPT
|
|
FPMAKE_OPT+=$(FPMAKEOPT)
|
|
endif
|
|
FPMAKE_OPT+=--localunitdir=../..
|
|
FPMAKE_OPT+=--globalunitdir=../../packages
|
|
FPMAKE_OPT+=$(FPC_TARGETOPT)
|
|
FPMAKE_OPT+=$(addprefix -o ,$(FPCOPT))
|
|
FPMAKE_OPT+=--compiler=$(FPC)
|
|
FPMAKE_OPT+=-bu
|
|
ifdef NOGDB
|
|
FPMAKE_OPT+=--NoGDB=1
|
|
else
|
|
ifndef NOGDBMI
|
|
ifneq ($(findstring $(OS_TARGET),$(GDBMI_DEFAULT_OS_LIST)),)
|
|
GDBMI=1
|
|
endif
|
|
endif # NOGDBMI
|
|
|
|
ifdef NOGDBMI
|
|
FPMAKE_OPT+=--NOGDBMI=1
|
|
endif
|
|
|
|
ifdef GDBMI
|
|
FPMAKE_OPT+=--GDBMI=1
|
|
# If the rtl does not require libc, then
|
|
# IDE compiled with GDBMI should be a static executable
|
|
# and can thus be cross-compiled
|
|
ifeq ($(findstring $(OS_TARGET),aix beos darwin haiku solaris),)
|
|
GDBMI_IS_STATIC=1
|
|
endif
|
|
endif
|
|
endif # NOGDB
|
|
|
|
ifndef GDBMI_IS_STATIC
|
|
ifndef BUILDFULLNATIVE
|
|
# Omit executable is only required if generated executable is not static
|
|
FPMAKE_OPT+=-scp
|
|
endif
|
|
endif # GDBMI_IS_STATIC
|
|
|
|
ifdef PPC_TARGET
|
|
FPMAKE_OPT+=--CompilerTarget=$(PPC_TARGET)
|
|
endif
|
|
|
|
.NOTPARALLEL:
|
|
|
|
PPC_TARGETS=i386 m68k powerpc sparc arm x86_64 powerpc64 mips mipsel avr jvm i8086 aarch64 sparc64
|
|
CLEAN_TARGETS=$(addsuffix _clean,$(sort $(PPC_TARGETS)))
|
|
DISTCLEAN_TARGETS=$(addsuffix _distclean,$(sort $(PPC_TARGETS)))
|
|
INSTALL_TARGETS=$(addsuffix _exe_install,$(sort $(PPC_TARGETS)))
|
|
.PHONY: $(PPC_TARGETS) $(CLEAN_TARGETS) $(DISTCLEAN_TARGETS) $(INSTALL_TARGETS)
|
|
|
|
$(PPC_TARGETS):
|
|
$(MAKE) PPC_TARGET=$@ all
|
|
|
|
$(CLEAN_TARGETS):
|
|
$(MAKE) clean PPC_TARGET=$(subst _clean,,$@)
|
|
|
|
$(DISTCLEAN_TARGETS):
|
|
$(MAKE) distclean PPC_TARGET=$(subst _distclean,,$@)
|
|
|
|
$(INSTALL_TARGETS):
|
|
$(MAKE) all install PPC_TARGET=$(subst _exe_install,,$@)
|
|
|
|
all_targets: $(PPC_TARGETS)
|
|
|
|
all_targets_install: $(INSTALL_TARGETS)
|
|
|
|
|
|
fpmake$(SRCEXEEXT): fpmake.pp
|
|
$(FPCFPMAKE) fpmake.pp $(FPMAKE_SKIP_CONFIG) $(addprefix -Fu,$(COMPILER_FPMAKE_UNITDIR)) $(FPCMAKEOPT) $(OPT)
|
|
all: fpmake$(SRCEXEEXT)
|
|
$(LOCALFPMAKE) compile $(FPMAKE_OPT)
|
|
smart: fpmake$(SRCEXEEXT)
|
|
$(LOCALFPMAKE) compile $(FPMAKE_OPT) -o -XX -o -CX
|
|
release: fpmake$(SRCEXEEXT)
|
|
$(LOCALFPMAKE) compile $(FPMAKE_OPT) -o -dRELEASE
|
|
debug: fpmake$(SRCEXEEXT)
|
|
$(LOCALFPMAKE) compile $(FPMAKE_OPT) -o -dDEBUG
|
|
# If no fpmake exists and (dist)clean is called, do not try to build fpmake, it will
|
|
# most often fail because the dependencies are cleared.
|
|
# In case of a clean, simply do nothing
|
|
ifeq ($(FPMAKE_BIN_CLEAN),)
|
|
clean:
|
|
else
|
|
clean:
|
|
$(FPMAKE_BIN_CLEAN) clean $(FPMAKE_OPT)
|
|
endif
|
|
|
|
CLEAN_TARGET_DIRS=$(subst /Makefile.fpc, ,$(wildcard */Makefile.fpc))
|
|
%_distclean:
|
|
$(MAKE) -C $* distclean
|
|
|
|
# In case of a distclean, perform an 'old'-style distclean. This to avoid problems
|
|
# when the package is compiled using fpcmake prior to running this clean using fpmake
|
|
ifeq ($(FPMAKE_BIN_CLEAN),)
|
|
distclean: fpc_cleanall $(addsuffix _distclean,$(CLEAN_TARGET_DIRS))
|
|
else
|
|
distclean:
|
|
ifdef inUnix
|
|
{ $(FPMAKE_BIN_CLEAN) distclean $(FPMAKE_OPT); if [ $$? != "0" ]; then { echo Something wrong with fpmake exectable. Remove the executable and call make recursively to recover.; $(DEL) $(FPMAKE_BIN_CLEAN); $(MAKE) fpc_cleanall; }; fi; }
|
|
else
|
|
$(FPMAKE_BIN_CLEAN) distclean $(FPMAKE_OPT)
|
|
endif
|
|
-$(DEL) $(LOCALFPMAKE)
|
|
-$(DEL) fpmake.o
|
|
-$(DEL) fpmake.dbg
|
|
endif
|
|
cleanall: distclean
|
|
install: fpmake$(SRCEXEEXT)
|
|
ifdef UNIXHier
|
|
$(LOCALFPMAKE) install $(FPMAKE_OPT) --prefix=$(INSTALL_PREFIX) --baseinstalldir=$(INSTALL_LIBDIR)/fpc/$(FPC_VERSION) $(FPMAKE_INSTALL_OPT)
|
|
else
|
|
$(LOCALFPMAKE) install $(FPMAKE_OPT) --prefix=$(INSTALL_BASEDIR) --baseinstalldir=$(INSTALL_BASEDIR) $(FPMAKE_INSTALL_OPT)
|
|
endif
|
|
# distinstall also installs the example-sources and omits the location of the source-
|
|
# files from the fpunits.cfg files.
|
|
distinstall: fpmake$(SRCEXEEXT)
|
|
ifdef UNIXHier
|
|
$(LOCALFPMAKE) install $(FPMAKE_OPT) --prefix=$(INSTALL_PREFIX) --baseinstalldir=$(INSTALL_LIBDIR)/fpc/$(FPC_VERSION) $(FPMAKE_INSTALL_OPT) -ie -fsp 0
|
|
else
|
|
$(LOCALFPMAKE) install $(FPMAKE_OPT) --prefix=$(INSTALL_BASEDIR) --baseinstalldir=$(INSTALL_BASEDIR) $(FPMAKE_INSTALL_OPT) -ie -fsp 0
|
|
endif
|
|
zipinstall: fpmake$(SRCEXEEXT)
|
|
$(LOCALFPMAKE) zipinstall $(FPMAKE_OPT) --zipprefix=$(DIST_DESTDIR)/$(ZIPPREFIX)
|
|
zipdistinstall: fpmake$(SRCEXEEXT)
|
|
$(LOCALFPMAKE) zipinstall $(FPMAKE_OPT) --zipprefix=$(DIST_DESTDIR)/$(ZIPPREFIX) -ie -fsp 0
|
|
zipsourceinstall: fpmake$(SRCEXEEXT)
|
|
ifdef UNIXHier
|
|
$(LOCALFPMAKE) archive $(FPMAKE_OPT) --zipprefix=$(DIST_DESTDIR)/$(ZIPPREFIX) --prefix=share/src/fpc-\$$\(PACKAGEVERSION\)/$(INSTALL_FPCSUBDIR)/\$$\(PACKAGEDIRECTORY\)
|
|
else
|
|
$(LOCALFPMAKE) archive $(FPMAKE_OPT) --zipprefix=$(DIST_DESTDIR)/$(ZIPPREFIX) --prefix=source\\$(INSTALL_FPCSUBDIR)\\\$$\(PACKAGEDIRECTORY\)
|
|
endif
|