123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- #
- # Makefile.fpc for Free Pascal Win64 RTL
- #
- [package]
- main=rtl
- [target]
- loaders=$(LOADERS)
- units=system uuchar objpas macpas iso7185 buildrtl cpall lineinfo lnfodwrf
- implicitunits=sysinit ctypes strings \
- extpas \
- heaptrc \
- dos messages \
- windows cmem dynlibs \
- rtlconsts sysconst sysutils math types \
- typinfo fgl classes getopts \
- charset character fpwidestring \
- sharemem exeinfo fpintres windirs \
- cpu signals \
- cp1250 cp1251 cp1252 cp1253 cp1254 cp1255 cp1256 cp1257 cp1258 \
- cp437 cp646 cp850 cp856 cp866 cp874 cp8859_1 cp8859_5 cp8859_2 cp852 \
- unicodedata unicodenumtable
- # mmx
- # fpcmemdll
- # winsysut signals
- # no cygwin so far
- # initc
- rsts=math typinfo classes sysconst
- programs=
- shared=fpcmemdll
- [require]
- nortl=y
- [install]
- fpcpackage=y
- buildunit= buildrtl
- [default]
- fpcdir=../..
- target=win64
- [compiler]
- includedir=$(INC) $(PROCINC)
- sourcedir=$(INC) $(PROCINC) $(COMMON) $(WINDIR)
- [prerules]
- RTL=..
- INC=$(RTL)/inc
- COMMON=$(RTL)/common
- PROCINC=$(RTL)/$(CPU_TARGET)
- WININC=../win/wininc
- WINDIR=../win
- UNITPREFIX=rtl
- SYSTEMUNIT=system
- ifneq ($(findstring 2.0.,$(FPC_VERSION)),)
- LOADERS=wprt0 wdllprt0 gprt0 wcygprt0
- endif
- # Paths
- OBJPASDIR=$(RTL)/objpas
- # Files used by windows.pp
- #include $(WININC)/makefile.inc
- WINDOWS_SOURCE_FILES=$(addprefix $(WININC)/,$(addsuffix .inc,$(WINDOWS_FILES)))
- [rules]
- .NOTPARALLEL:
- SYSTEMPPU=$(addsuffix $(PPUEXT),system)
- # Get the system independent include file names.
- # This will set the following variables :
- # SYSINCNAMES
- include $(INC)/makefile.inc
- SYSINCDEPS=$(addprefix $(INC)/,$(SYSINCNAMES))
- # Get the processor dependent include file names.
- # This will set the following variables :
- # CPUINCNAMES
- include $(PROCINC)/makefile.cpu
- SYSCPUDEPS=$(addprefix $(PROCINC)/,$(CPUINCNAMES))
- # Put system unit dependencies together.
- SYSDEPS=$(SYSINCDEPS) $(SYSCPUDEPS)
- #
- # Unit specific rules
- #
- system$(PPUEXT) : system.pp $(SYSDEPS)
- $(COMPILER) -Us -Sg system.pp -Fi../win
- uuchar$(PPUEXT): $(SYSTEMUNIT)$(PPUEXT) $(INC)/uuchar.pp
- $(COMPILER) $(INC)/uuchar.pp
- objpas$(PPUEXT): $(OBJPASDIR)/objpas.pp $(INC)/except.inc system$(PPUEXT)
- $(COMPILER) -I$(OBJPASDIR) $(OBJPASDIR)/objpas.pp
- macpas$(PPUEXT) : $(INC)/macpas.pp objpas$(PPUEXT) buildrtl$(PPUEXT)
- $(COMPILER) $(INC)/macpas.pp $(REDIR)
- buildrtl$(PPUEXT): buildrtl.pp system$(PPUEXT) objpas$(PPUEXT)
- $(COMPILER) -Fi$(OBJPASDIR)/sysutils -Fi$(OBJPASDIR)/classes -Fu$(PROCINC) -I$(WINDIR) -I$(OBJPASDIR) -I$(WININC) -Fu$(WININC) -Fu$(WINDIR) -I$(INC) -Fu$(INC) -Fu$(OBJPASDIR) buildrtl
- cpall$(PPUEXT): $(RTL)/charmaps/cpall.pas system$(PPUEXT) objpas$(PPUEXT)
- $(COMPILER) -Fu$(INC) -Fi$(RTL)/charmaps $(RTL)/charmaps/cpall.pas
- iso7185$(PPUEXT) : $(INC)/iso7185.pp $(SYSTEMUNIT)$(PPUEXT)
- $(COMPILER) $(INC)/iso7185.pp
- lineinfo$(PPUEXT) : $(INC)/lineinfo.pp $(SYSTEMUNIT)$(PPUEXT)
- $(COMPILER) $(INC)/lineinfo.pp
- lnfodwrf$(PPUEXT) : $(INC)/lnfodwrf.pp $(SYSTEMUNIT)$(PPUEXT)
- $(COMPILER) $(INC)/lnfodwrf.pp
|