123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- #
- # Makefile.fpc for Free Pascal NativeNT RTL
- #
- [package]
- main=rtl
- [target]
- loaders=
- #units=system objpas macpas iso7185 buildrtl lineinfo lnfodwrf
- units=system uuchar objpas iso7185 buildrtl
- implicitunits=ndk ndkutils ddk \
- ctypes strings \
- # heaptrc
- matrix \
- # initc cmem dynlibs signals \
- # dos crt objects \
- rtlconsts sysconst sysutils math types \
- strutils dateutils varutils variants typinfo fgl classes \
- convutils stdconvs $(CPU_UNITS) charset ucomplex getopts \
- # sockets printer \
- # video mouse keyboard
- fmtbcd #\
- # sharemem exeinfo fpintres
- # shared=$(DLLS)
- rsts=math varutils typinfo variants classes dateutils sysconst
- [require]
- nortl=y
- [install]
- fpcpackage=y
- [default]
- fpcdir=../..
- target=nativent
- [compiler]
- includedir=$(INC) $(PROCINC) $(DDKINC) $(NDKINC)
- sourcedir=$(INC) $(PROCINC) $(COMMON)
- [prerules]
- RTL=..
- INC=$(RTL)/inc
- COMMON=$(RTL)/common
- PROCINC=$(RTL)/$(CPU_TARGET)
- DDKINC=ddk
- NDKINC=ndk
- UNITPREFIX=rtl
- SYSTEMUNIT=system
- CPU_UNITS=
- ifeq ($(ARCH),i386)
- CPU_UNITS=x86 cpu mmx
- endif
- ifeq ($(ARCH),x86_64)
- CPU_UNITS=x86 cpu
- endif
- ifneq ($(findstring 2.0.,$(FPC_VERSION)),)
- #LOADERS=wprt0 wdllprt0 gprt0 wcygprt0
- DLLS=
- else
- DLLS=fpcmemdll
- 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)
- #
- # Loaders
- #
- # none
- #
- # Unit specific rules
- #
- system$(PPUEXT) : system.pp $(SYSDEPS)
- $(COMPILER) -Us -Sg system.pp
- uuchar$(PPUEXT): $(SYSTEMUNIT)$(PPUEXT) $(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$(OBJPASDIR) -Fi$(DDKINC) -I$(INC) -Fu$(INC) -Fu$(OBJPASDIR) buildrtl
|