mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 07:19:37 +02:00
* fixed rtl path
This commit is contained in:
parent
96159c617a
commit
b07d934d64
@ -83,11 +83,12 @@ endif
|
||||
# System independent
|
||||
#####################################################################
|
||||
|
||||
# Where are the include files ?
|
||||
INC=../inc
|
||||
PROCINC=../$(CPU)
|
||||
CFG=../cfg
|
||||
OBJPASDIR=../objpas
|
||||
# Where are the include files
|
||||
RTL=..
|
||||
CFG=$(RTL)/cfg
|
||||
INC=$(RTL)/inc
|
||||
PROCINC=$(RTL)/$(CPU)
|
||||
OBJPASDIR=$(RTL)/objpas
|
||||
|
||||
# Get some defaults for Programs and OSes.
|
||||
# This will set the following variables :
|
||||
@ -244,7 +245,10 @@ include $(CFG)/makefile.def
|
||||
|
||||
#
|
||||
# $Log$
|
||||
# Revision 1.1 1998-09-10 14:15:47 peter
|
||||
# Revision 1.2 1998-10-02 09:25:58 peter
|
||||
# * fixed rtl path
|
||||
#
|
||||
# Revision 1.1 1998/09/10 14:15:47 peter
|
||||
# - renamed makefile to Makefile
|
||||
#
|
||||
#
|
@ -48,10 +48,11 @@ OS_TARGET=go32v1
|
||||
CPU=i386
|
||||
|
||||
# Where are the include files
|
||||
CFG=../../cfg
|
||||
INC=../../inc
|
||||
PROCINC=../../$(CPU)
|
||||
OBJPASDIR=../../objpas
|
||||
RTL=../..
|
||||
CFG=$(RTL)/cfg
|
||||
INC=$(RTL)/inc
|
||||
PROCINC=$(RTL)/$(CPU)
|
||||
OBJPASDIR=$(RTL)/objpas
|
||||
# Where are the .ppi files.
|
||||
PPI=../ppi
|
||||
|
||||
@ -249,7 +250,10 @@ include $(CFG)/makefile.def
|
||||
|
||||
#
|
||||
# $Log$
|
||||
# Revision 1.3 1998-09-16 16:47:26 peter
|
||||
# Revision 1.4 1998-10-02 09:25:59 peter
|
||||
# * fixed rtl path
|
||||
#
|
||||
# Revision 1.3 1998/09/16 16:47:26 peter
|
||||
# * merged fixes
|
||||
#
|
||||
# Revision 1.1.2.2 1998/09/16 16:17:49 peter
|
||||
|
@ -48,10 +48,11 @@ OS_TARGET=go32v2
|
||||
CPU=i386
|
||||
|
||||
# Where are the include files
|
||||
CFG=../../cfg
|
||||
INC=../../inc
|
||||
PROCINC=../../$(CPU)
|
||||
OBJPASDIR=../../objpas
|
||||
RTL=../..
|
||||
CFG=$(RTL)/cfg
|
||||
INC=$(RTL)/inc
|
||||
PROCINC=$(RTL)/$(CPU)
|
||||
OBJPASDIR=$(RTL)/objpas
|
||||
# Where are the .ppi files.
|
||||
PPI=../ppi
|
||||
|
||||
@ -269,7 +270,10 @@ include $(CFG)/makefile.def
|
||||
|
||||
#
|
||||
# $Log$
|
||||
# Revision 1.3 1998-09-16 16:47:27 peter
|
||||
# Revision 1.4 1998-10-02 09:26:00 peter
|
||||
# * fixed rtl path
|
||||
#
|
||||
# Revision 1.3 1998/09/16 16:47:27 peter
|
||||
# * merged fixes
|
||||
#
|
||||
# Revision 1.1.2.2 1998/09/16 16:17:50 peter
|
||||
|
@ -99,11 +99,12 @@ ifeq ($(LINK_TO_C),YES)
|
||||
override OPT+=-dCRTLIB
|
||||
endif
|
||||
|
||||
# Where are the include files ?
|
||||
INC=../inc
|
||||
PROCINC=../$(CPU)
|
||||
CFG=../cfg
|
||||
OBJPASDIR=../objpas
|
||||
# Where are the include files
|
||||
RTL=..
|
||||
CFG=$(RTL)/cfg
|
||||
INC=$(RTL)/inc
|
||||
PROCINC=$(RTL)/$(CPU)
|
||||
OBJPASDIR=$(RTL)/objpas
|
||||
|
||||
# Get some defaults for Programs and OSes.
|
||||
# This will set the following variables :
|
||||
@ -321,7 +322,10 @@ include $(CFG)/makefile.def
|
||||
|
||||
#
|
||||
# $Log$
|
||||
# Revision 1.3 1998-09-15 12:09:10 peter
|
||||
# Revision 1.4 1998-10-02 09:26:01 peter
|
||||
# * fixed rtl path
|
||||
#
|
||||
# Revision 1.3 1998/09/15 12:09:10 peter
|
||||
# * merged updates
|
||||
#
|
||||
# Revision 1.2 1998/09/11 13:14:01 michael
|
||||
|
@ -17,10 +17,12 @@
|
||||
# Defaults
|
||||
#####################################################################
|
||||
|
||||
# Where are the include files ?
|
||||
CFG=../cfg
|
||||
INC=../inc
|
||||
PROCINC=../$(CPU)
|
||||
# Where are the include files
|
||||
RTL=..
|
||||
CFG=$(RTL)/cfg
|
||||
INC=$(RTL)/inc
|
||||
PROCINC=$(RTL)/$(CPU)
|
||||
OBJPASDIR=.
|
||||
|
||||
# Libname is always objpas
|
||||
override LIBNAME=objpas
|
||||
@ -120,7 +122,10 @@ include $(CFG)/makefile.def
|
||||
|
||||
#
|
||||
# $Log$
|
||||
# Revision 1.4 1998-09-16 16:47:29 peter
|
||||
# Revision 1.5 1998-10-02 09:26:02 peter
|
||||
# * fixed rtl path
|
||||
#
|
||||
# Revision 1.4 1998/09/16 16:47:29 peter
|
||||
# * merged fixes
|
||||
#
|
||||
# Revision 1.3 1998/09/15 12:09:12 peter
|
||||
|
@ -83,11 +83,12 @@ endif
|
||||
# System independent
|
||||
#####################################################################
|
||||
|
||||
# Where are the include files ?
|
||||
INC=../inc
|
||||
PROCINC=../$(CPU)
|
||||
CFG=../cfg
|
||||
OBJPASDIR=../objpas
|
||||
# Where are the include files
|
||||
RTL=..
|
||||
CFG=$(RTL)/cfg
|
||||
INC=$(RTL)/inc
|
||||
PROCINC=$(RTL)/$(CPU)
|
||||
OBJPASDIR=$(RTL)/objpas
|
||||
|
||||
# Get some defaults for Programs and OSes.
|
||||
# This will set the following variables :
|
||||
@ -245,7 +246,10 @@ include $(CFG)/makefile.def
|
||||
|
||||
#
|
||||
# $Log$
|
||||
# Revision 1.1 1998-09-10 14:15:51 peter
|
||||
# Revision 1.2 1998-10-02 09:26:03 peter
|
||||
# * fixed rtl path
|
||||
#
|
||||
# Revision 1.1 1998/09/10 14:15:51 peter
|
||||
# - renamed makefile to Makefile
|
||||
#
|
||||
#
|
@ -47,11 +47,12 @@ endif
|
||||
override OS_TARGET=win32
|
||||
override CPU=i386
|
||||
|
||||
# Where are the include files ?
|
||||
INC=../inc
|
||||
PROCINC=../$(CPU)
|
||||
CFG=../cfg
|
||||
OBJPASDIR=../objpas
|
||||
# Where are the include files
|
||||
RTL=..
|
||||
CFG=$(RTL)/cfg
|
||||
INC=$(RTL)/inc
|
||||
PROCINC=$(RTL)/$(CPU)
|
||||
OBJPASDIR=$(RTL)/objpas
|
||||
|
||||
|
||||
#####################################################################
|
||||
@ -366,7 +367,10 @@ include $(CFG)/makefile.def
|
||||
|
||||
#
|
||||
# $Log$
|
||||
# Revision 1.4 1998-09-16 16:47:35 peter
|
||||
# Revision 1.5 1998-10-02 09:26:05 peter
|
||||
# * fixed rtl path
|
||||
#
|
||||
# Revision 1.4 1998/09/16 16:47:35 peter
|
||||
# * merged fixes
|
||||
#
|
||||
# Revision 1.1.2.2 1998/09/16 16:17:55 peter
|
||||
|
Loading…
Reference in New Issue
Block a user