1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #
- # Makefile.fpc for fppkg
- #
- [package]
- name=fppkg
- version=2.5.1
- [target]
- units=fprepos fpxmlrep pkgoptions pkgglobals pkgmessages pkghandler pkgmkconv pkgdownload pkgfpmake pkgcommands pkgrepos
- units_linux=pkgwget pkgfphttp
- units_beos=pkgwget pkgfphttp
- units_haiku=pkgwget pkgfphttp
- units_freebsd=pkgwget pkgfphttp
- units_netbsd=pkgwget pkgfphttp
- nits_openbsd=pkgwget pkgfphttp
- units_darwin=pkgwget pkgfphttp
- units_iphonesim=pkgwget pkgfphttp
- units_solaris=pkgwget pkgfphttp
- units_win32=pkgwget pkgfphttp
- units_win64=pkgwget pkgfphttp
- units_wince=pkgwget pkgfphttp
- units_symobi=pkgwget pkgfphttp
- rsts=fprepos fpxmlrep pkgmessages
- [compiler]
- sourcedir=src
- includedir=src
- [install]
- fpcpackage=y
- [default]
- fpcdir=../..
- [require]
- packages=fcl-base fcl-xml fcl-process fcl-net paszlib fcl-web
- 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)
|