* Restore original makefile

This commit is contained in:
Michaël Van Canneyt 2022-12-01 23:03:48 +01:00
parent ce4a2bd696
commit 4022919f1a
2 changed files with 14 additions and 11 deletions

View File

@ -3166,6 +3166,9 @@ ifneq ($(filter $(CPU_TARGET),x86_64 mips mipsel mips64 mips64el riscv64 powerpc
override FPCOPT+=-Cg
endif
endif
ifneq ($(filter $(CPU_TARGET),z80),)
override FPCOPT+=-CX -XX
endif
ifdef LINKSHARED
endif
ifdef GCCLIBDIR
@ -3755,12 +3758,12 @@ help:
@exit
registration:
$(MAKE) -C packager/registration
lazutils: registration
lazutils:
$(MAKE) -C components/lazutils
lcl: lazutils
lcl:
$(MAKE) -C components/freetype
$(MAKE) -C lcl
basecomponents: lcl
basecomponents:
$(MAKE) -C components/buildintf
$(MAKE) -C components/lazdebuggers/lazdebuggerintf
$(MAKE) -C components/debuggerintf
@ -3779,9 +3782,9 @@ bigidecomponents:
$(MAKE) -C components bigide
tools:
$(MAKE) -C tools
revisioninc: lazutils
revisioninc:
$(MAKE) -C ide revisioninc
ide: basecomponents
ide:
$(MAKE) -C ide ide
idepkg: ide
idebig:

View File

@ -121,14 +121,14 @@ registration:
$(MAKE) -C packager/registration
#-----------------------------------------------------------------------------
# build package lazutils (shared by all LCL_PLATFORMs)
lazutils: registration
# build package lazutils (shared by all LCL_PLATFORMs)
lazutils:
$(MAKE) -C components/lazutils
#-----------------------------------------------------------------------------
# build package FreeType, LCLBase and LCL for LCL_PLATFORM
# requires lazutils
lcl: lazutils
lcl:
$(MAKE) -C components/freetype
$(MAKE) -C lcl
@ -136,7 +136,7 @@ lcl: lazutils
# build required LCL components needed by IDE for the LCL_PLATFORM
# (Note: lazutils and codetools are shared on all LCL platforms)
# requires lcl
basecomponents: lcl
basecomponents:
$(MAKE) -C components/buildintf
$(MAKE) -C components/lazdebuggers/lazdebuggerintf
$(MAKE) -C components/debuggerintf
@ -167,13 +167,13 @@ tools:
#-----------------------------------------------------------------------------
# create/update ide/revision.inc
# requires tools
revisioninc: lazutils
revisioninc:
$(MAKE) -C ide revisioninc
#-----------------------------------------------------------------------------
# build lazarus exe with minimum of packages for the LCL_PLATFORM
# requires basecomponents and tools
ide: basecomponents
ide:
$(MAKE) -C ide ide
#-----------------------------------------------------------------------------