mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 04:29:20 +02:00
* The Makefile.fpc is adapted and the Makefile re-generated so that fpmake is
used to compile the fcl-web package. The old Makefile.fpc is copied to Makefile.org so it can be used for recovery when building fails. git-svn-id: trunk@17215 -
This commit is contained in:
parent
103867412a
commit
86c8c6c4eb
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -2297,6 +2297,7 @@ packages/fcl-res/xml/versiontypes.xml svneol=native#text/plain
|
|||||||
packages/fcl-res/xml/winpeimagereader.xml svneol=native#text/plain
|
packages/fcl-res/xml/winpeimagereader.xml svneol=native#text/plain
|
||||||
packages/fcl-web/Makefile svneol=native#text/plain
|
packages/fcl-web/Makefile svneol=native#text/plain
|
||||||
packages/fcl-web/Makefile.fpc svneol=native#text/plain
|
packages/fcl-web/Makefile.fpc svneol=native#text/plain
|
||||||
|
packages/fcl-web/Makefile.org svneol=native#text/plain
|
||||||
packages/fcl-web/Makefile_fpmake.fpc svneol=native#text/plain
|
packages/fcl-web/Makefile_fpmake.fpc svneol=native#text/plain
|
||||||
packages/fcl-web/examples/jsonrpc/demo1/README.txt svneol=native#text/plain
|
packages/fcl-web/examples/jsonrpc/demo1/README.txt svneol=native#text/plain
|
||||||
packages/fcl-web/examples/jsonrpc/demo1/demo.lpi svneol=native#text/plain
|
packages/fcl-web/examples/jsonrpc/demo1/demo.lpi svneol=native#text/plain
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -6,25 +6,40 @@
|
|||||||
name=fcl-web
|
name=fcl-web
|
||||||
version=2.5.1
|
version=2.5.1
|
||||||
|
|
||||||
[target]
|
|
||||||
dirs=src/base src/webdata src/jsonrpc
|
|
||||||
|
|
||||||
[require]
|
[require]
|
||||||
packages=fcl-base fcl-xml fcl-db fcl-json fcl-net fcl-process
|
packages=rtl fpmkunit
|
||||||
|
|
||||||
[compiler]
|
|
||||||
options=-S2h
|
|
||||||
|
|
||||||
[install]
|
|
||||||
fpcpackage=y
|
|
||||||
|
|
||||||
[default]
|
[default]
|
||||||
fpcdir=../..
|
fpcdir=../..
|
||||||
|
|
||||||
|
[prerules]
|
||||||
|
# If no fpmake exists and clean is called, do not try to build fpmake, it will
|
||||||
|
# most often fail because the dependencies are cleared. So simply skip the
|
||||||
|
# clean by replacing the command with 'echo'
|
||||||
|
FPMAKE_BIN_CLEAN=$(wildcard ./fpmake$(SRCEXEEXT))
|
||||||
|
ifeq ($(FPMAKE_BIN_CLEAN),)
|
||||||
|
FPMAKE_BIN_CLEAN=$(ECHO)
|
||||||
|
endif
|
||||||
|
ifdef OS_TARGET
|
||||||
|
FPC_TARGETOPT+=--os=$(OS_TARGET)
|
||||||
|
endif
|
||||||
|
ifdef CPU_TARGET
|
||||||
|
FPC_TARGETOPT+=--cpu=$(CPU_TARGET)
|
||||||
|
endif
|
||||||
|
|
||||||
[rules]
|
[rules]
|
||||||
.NOTPARALLEL:
|
fpmake: fpmake.pp
|
||||||
distclean: $(addsuffix _distclean,$(TARGET_DIRS)) fpc_distclean
|
$(FPC) fpmake.pp $(FPCOPT)
|
||||||
clean: $(addsuffix _clean,$(TARGET_DIRS)) fpc_clean
|
all: fpmake
|
||||||
cleanall: $(addsuffix _cleanall,$(TARGET_DIRS)) fpc_cleanall
|
./fpmake build --localunitdir=../.. --globalunitdir=.. $(FPC_TARGETOPT) $(addprefix -o ,$(FPCOPT)) --compiler=$(FPC)
|
||||||
|
smart: fpmake
|
||||||
|
./fpmake build --localunitdir=../.. --globalunitdir=.. $(FPC_TARGETOPT) $(addprefix -o ,$(FPCOPT)) --compiler=$(FPC) -o "-XX -CX"
|
||||||
|
release: fpmake
|
||||||
|
./fpmake build --localunitdir=../.. --globalunitdir=.. $(FPC_TARGETOPT) $(addprefix -o ,$(FPCOPT)) --compiler=$(FPC) -o "-dRELEASE"
|
||||||
|
debug: fpmake
|
||||||
|
./fpmake build --localunitdir=../.. --globalunitdir=.. $(FPC_TARGETOPT) $(addprefix -o ,$(FPCOPT)) --compiler=$(FPC) -o "-dDEBUG"
|
||||||
|
clean:
|
||||||
|
$(FPMAKE_BIN_CLEAN) clean --localunitdir=../.. --globalunitdir=.. $(FPC_TARGETOPT) $(addprefix -o ,$(FPCOPT)) --compiler=$(FPC)
|
||||||
|
install: fpmake
|
||||||
|
./fpmake install --localunitdir=../.. --globalunitdir=.. $(FPC_TARGETOPT) $(addprefix -o ,$(FPCOPT)) --compiler=$(FPC) --prefix=$(PREFIX)
|
||||||
|
|
||||||
|
30
packages/fcl-web/Makefile.org
Normal file
30
packages/fcl-web/Makefile.org
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
#
|
||||||
|
# Makefile.fpc for TDataSet for FCL
|
||||||
|
#
|
||||||
|
|
||||||
|
[package]
|
||||||
|
name=fcl-web
|
||||||
|
version=2.5.1
|
||||||
|
|
||||||
|
[target]
|
||||||
|
dirs=src/base src/webdata src/jsonrpc
|
||||||
|
|
||||||
|
[require]
|
||||||
|
packages=fcl-base fcl-xml fcl-db fcl-json fcl-net fcl-process
|
||||||
|
|
||||||
|
[compiler]
|
||||||
|
options=-S2h
|
||||||
|
|
||||||
|
[install]
|
||||||
|
fpcpackage=y
|
||||||
|
|
||||||
|
[default]
|
||||||
|
fpcdir=../..
|
||||||
|
|
||||||
|
[rules]
|
||||||
|
.NOTPARALLEL:
|
||||||
|
distclean: $(addsuffix _distclean,$(TARGET_DIRS)) fpc_distclean
|
||||||
|
clean: $(addsuffix _clean,$(TARGET_DIRS)) fpc_clean
|
||||||
|
cleanall: $(addsuffix _cleanall,$(TARGET_DIRS)) fpc_cleanall
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user