mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-03 00:20:33 +01:00
resource compilation happens and that the standard FPC resource
helpers are not available. What happens is that all files specified
in {$r xxx} statements are packed together into an <appname>.jar
file, under the namespace "org.freepascal.rawresources". They
can be loaded using the java.lang.Class.getResource/getResourceAsStream()
api
git-svn-id: branches/jvmbackend@18776 -
24 lines
540 B
Makefile
24 lines
540 B
Makefile
#
|
|
# Makefile.fpc for fpcres
|
|
#
|
|
|
|
[target]
|
|
programs=fpcres fpcjres
|
|
|
|
[clean]
|
|
units=closablefilestream msghandler paramparser sourcehandler target jarsourcehandler jarparamparser
|
|
|
|
[require]
|
|
packages=rtl fcl-res paszlib
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
|
|
[default]
|
|
fpcdir=../..
|
|
|
|
[rules]
|
|
.NOTPARALLEL:
|
|
fpcres$(EXEEXT): target.pas msghandler.pas closablefilestream.pas paramparser.pas sourcehandler.pas fpcres.pas
|
|
fpcjres$(EXEEXT): msghandler.pas closablefilestream.pas paramparser.pas sourcehandler.pas fpcjres.pas jarsourcehandler.pas jarparamparser.pas
|