git-svn-id: https://svn.code.sf.net/p/kolmck/code@17 91bb2d04-0c0c-4d2d-88a5-bbb6f4c1fa07
This commit is contained in:
dkolmck
2009-08-19 09:26:45 +00:00
parent b16ca891c9
commit 254b27740e
62 changed files with 206851 additions and 0 deletions

43
System/D7_ECM/makefile Normal file
View File

@@ -0,0 +1,43 @@
# ******************************************************************
# * *
# * DELPHI7 KOL RTL Replacement *
# * MAKE script *
# * *
# * (C) 2005 by ECM *
# * *
# ******************************************************************
# To build the runtime library without debug information (the default),
# simply run MAKE.EXE from the directory containing this MAKEFILE. To
# build a debug version of the runtime library, specify a -DDEBUG command
# line parameter when running MAKE.EXE.
DCC = dcc32 -q
BIN = bin
LIB = lib
!if $d(DEBUG)
RTLDEBUG = -$$D+
!else
RTLDEBUG = -$$D-
!endif
default: \
system.dcu \
SysConst.dcu \
SysSfIni.dcu \
SysWStr.dcu
system.dcu: system.pas sysinit.pas getmem.inc
$(DCC) system -m -y -z $(RTLDEBUG)
SysConst.dcu: SysConst.pas system.dcu
$(DCC) SysConst -z $(RTLDEBUG)
SysSfIni.dcu: SysSfIni.pas
$(DCC) SysSfIni -z $(RTLDEBUG)
SysWStr.dcu: SysWStr.pas
$(DCC) SysWStr -z $(RTLDEBUG)