git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jcl@16 c37d764d-f447-7644-a108-883140d013fb
14 lines
357 B
Makefile
14 lines
357 B
Makefile
FpcRtl = $(fpc)\rtl
|
|
Fcl = $(fpc)\fcl
|
|
FpcOut = ..\lib\fpc # for now...
|
|
|
|
PPCOptions = -Mdelphi -FE$(FpcOut) -Fu$(FpcOut);$(Fcl)\inc;common;windows;..\..\Win32API
|
|
|
|
PPC = ppc386 $(PPCOptions)
|
|
|
|
target:
|
|
@echo Compiling $(file)...
|
|
@if not exist $(FpcOut) mkdir $(FpcOut)
|
|
@$(PPC) $(PPCOptions) $(file) >> fpctest.err
|
|
|