mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-02 03:42:37 +02:00
48 lines
924 B
Makefile
48 lines
924 B
Makefile
#
|
|
# Makefile.fpc for fppkg
|
|
#
|
|
|
|
[package]
|
|
name=fppkg
|
|
version=2.0.0
|
|
|
|
[target]
|
|
programs=fppkg
|
|
units=fpmktype fpmkunit fprepos fpxmlrep pkgropts pkghandler pkgmkconv pkgdownload
|
|
units_linux=pkgwget pkglnet pkglibcurl
|
|
units_freebsd=pkgwget pkglnet pkglibcurl
|
|
units_netbsd=pkgwget pkglnet pkglibcurl
|
|
units_openbsd=pkgwget pkglnet pkglibcurl
|
|
units_darwin=pkgwget pkglnet pkglibcurl
|
|
units_solaris=pkgwget pkglnet pkglibcurl
|
|
units_win32=pkgwget pkglnet
|
|
units_win64=pkgwget pkglnet
|
|
units_wince=pkgwget pkglnet
|
|
examples=rep2xml
|
|
rsts=fprepos fpxmlrep fppkg
|
|
|
|
[compiler]
|
|
unitdir=$(FCL20) lnet
|
|
includedir=lnet/sys
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
|
|
[default]
|
|
fpcdir=../..
|
|
|
|
[require]
|
|
packages=fcl libcurl
|
|
|
|
[prerules]
|
|
# Compatibility to compile with 2.0.x
|
|
ifneq ($(findstring 2.0.,$(FPC_VERSION)),)
|
|
FCL20=fcl20
|
|
endif
|
|
|
|
[rules]
|
|
.NOTPARALLEL:
|
|
fpmkunit$(PPUEXT) : fpmkunit.pp fpmkcnst.inc fpmktype$(PPUEXT)
|
|
|
|
fpmktype$(PPUEXT) : fpmktype.pp fpmkcnst.inc
|