mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 14:29:10 +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 -
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
#
|
|
# Makefile.fpc for fppkg
|
|
#
|
|
|
|
[package]
|
|
name=fppkg
|
|
version=3.2.3
|
|
|
|
[target]
|
|
programs=fppkg
|
|
|
|
units_linux=pkglnet
|
|
units_beos=pkglnet
|
|
units_haiku=pkglnet
|
|
units_freebsd=pkglnet
|
|
units_netbsd=pkglnet
|
|
units_openbsd=pkglnet
|
|
units_darwin=pkglnet
|
|
units_iphonesim=pkglnet
|
|
units_solaris=pkglnet
|
|
units_win32=pkglnet
|
|
units_win64=pkglnet
|
|
units_wince=pkglnet
|
|
|
|
[compiler]
|
|
unitdir=lnet
|
|
includedir=lnet/sys
|
|
|
|
[clean]
|
|
units=lcommon lcontrolstack levents ltelnet lftp lhttp lhttputil lnet lstrbuffer
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
|
|
[default]
|
|
fpcdir=../..
|
|
|
|
[require]
|
|
packages=fpmkunit fcl-base fcl-xml fcl-process fcl-net paszlib libcurl fppkg
|
|
tools=data2inc
|
|
packages_darwin=univint
|
|
packages_iphonesim=univint
|
|
|
|
[rules]
|
|
.NOTPARALLEL:
|
|
ifneq ($(DATA2INC),)
|
|
fpmkunitsrc.inc: $(DEFAULT_FPCDIR)/packages/fpmkunit/src/fpmkunit.pp
|
|
$(DATA2INC) -b -s $(DEFAULT_FPCDIR)/packages/fpmkunit/src/fpmkunit.pp fpmkunitsrc.inc fpmkunitsrc
|
|
endif
|
|
|
|
# Don't include the dependency on fpmkunitsrc.inc by default so we can control
|
|
# better when we want to update the internal fpmkunitsrc
|
|
fppkg$(EXEEXT): $(wildcard pkg*.pp)
|