mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-05 03:11:09 +02:00
+ fpc_showinstallfiles to show which files will be added to the system
This commit is contained in:
parent
e251828447
commit
455a347203
@ -16,14 +16,14 @@
|
|||||||
# Config
|
# Config
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
MODULES=rtl compiler utils api fv gdb ide
|
MODULES=rtl compiler utils fcl gtk api fv gdb ide
|
||||||
|
|
||||||
ifndef RTLDIR
|
ifndef RTLDIR
|
||||||
RTLDIR=rtl
|
RTLDIR=rtl
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef COMPILERDIR
|
ifndef COMPILERDIR
|
||||||
COMPILERDIR=utils
|
COMPILERDIR=compiler
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef UTILSDIR
|
ifndef UTILSDIR
|
||||||
@ -75,7 +75,9 @@ RELEASE=1
|
|||||||
$(addsuffix _install,$(MODULES)) \
|
$(addsuffix _install,$(MODULES)) \
|
||||||
$(addsuffix _staticinstall,$(MODULES)) \
|
$(addsuffix _staticinstall,$(MODULES)) \
|
||||||
$(addsuffix _sharedinstall,$(MODULES))\
|
$(addsuffix _sharedinstall,$(MODULES))\
|
||||||
ide_allzip ide_gdbzip ide_fullzip ide_fullgdbzip
|
compiler_cycle \
|
||||||
|
idezips ide_allzip ide_gdbzip ide_fullzip ide_fullgdbzip \
|
||||||
|
fclzip gtkzip fvzip compilerzip utilszip
|
||||||
|
|
||||||
info:
|
info:
|
||||||
@echo
|
@echo
|
||||||
@ -178,6 +180,9 @@ rtl_sharedinstall:
|
|||||||
# Compiler
|
# Compiler
|
||||||
#######################################
|
#######################################
|
||||||
|
|
||||||
|
compiler_cycle:
|
||||||
|
$(MAKE) -C $(COMPILERDIR) cycle
|
||||||
|
|
||||||
compiler_all: rtl_all
|
compiler_all: rtl_all
|
||||||
$(MAKE) -C $(COMPILERDIR) all
|
$(MAKE) -C $(COMPILERDIR) all
|
||||||
|
|
||||||
@ -423,7 +428,10 @@ utilszip: utils_clean rtl_clean
|
|||||||
|
|
||||||
#
|
#
|
||||||
# $Log$
|
# $Log$
|
||||||
# Revision 1.15 1999-05-12 16:17:06 peter
|
# Revision 1.16 1999-05-16 02:37:29 peter
|
||||||
|
# + fpc_showinstallfiles to show which files will be added to the system
|
||||||
|
#
|
||||||
|
# Revision 1.15 1999/05/12 16:17:06 peter
|
||||||
# + utils_X targets
|
# + utils_X targets
|
||||||
# * missing export of prefixinstalldir
|
# * missing export of prefixinstalldir
|
||||||
#
|
#
|
||||||
|
@ -238,7 +238,7 @@ ECHO=$(strip $(wildcard $(addsuffix /echo$(EXEEXT),$(SEARCHPATH))))
|
|||||||
ifeq ($(ECHO),)
|
ifeq ($(ECHO),)
|
||||||
ECHO=echo
|
ECHO=echo
|
||||||
else
|
else
|
||||||
export ECHO:=$(firstword $(ECHO))
|
export ECHO:=@$(firstword $(ECHO))
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -748,6 +748,20 @@ endif
|
|||||||
# Install rules
|
# Install rules
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
|
fpc_showinstallfiles : all
|
||||||
|
ifndef DEFAULTUNITS
|
||||||
|
ifdef EXEOBJECTS
|
||||||
|
$(ECHO) $(addprefix "\n"$(BININSTALLDIR)/,$(EXEFILES))
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
ifdef LOADEROBJECTS
|
||||||
|
$(ECHO) $(addprefix "\n"$(UNITINSTALLDIR)/,$(LOADEROFILES))
|
||||||
|
endif
|
||||||
|
ifdef UNITOBJECTS
|
||||||
|
$(ECHO) $(addprefix "\n"$(UNITINSTALLDIR)/,$(UNITFILES))
|
||||||
|
$(ECHO) $(addprefix "\n"$(UNITINSTALLDIR)/,$(UNITOFILES))
|
||||||
|
endif
|
||||||
|
|
||||||
fpc_install : all
|
fpc_install : all
|
||||||
ifndef DEFAULTUNITS
|
ifndef DEFAULTUNITS
|
||||||
ifdef EXEOBJECTS
|
ifdef EXEOBJECTS
|
||||||
@ -1019,7 +1033,10 @@ endif
|
|||||||
|
|
||||||
#
|
#
|
||||||
# $Log$
|
# $Log$
|
||||||
# Revision 1.26 1999-05-14 22:46:21 peter
|
# Revision 1.27 1999-05-16 02:37:30 peter
|
||||||
|
# + fpc_showinstallfiles to show which files will be added to the system
|
||||||
|
#
|
||||||
|
# Revision 1.26 1999/05/14 22:46:21 peter
|
||||||
# * patch for comments in ld.so.conf
|
# * patch for comments in ld.so.conf
|
||||||
#
|
#
|
||||||
# Revision 1.25 1999/05/12 16:17:07 peter
|
# Revision 1.25 1999/05/12 16:17:07 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user