read.txt
git-svn-id: https://svn.code.sf.net/p/kolmck/code@17 91bb2d04-0c0c-4d2d-88a5-bbb6f4c1fa07
This commit is contained in:
43
System/D7_ECM/makefile
Normal file
43
System/D7_ECM/makefile
Normal 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)
|
Reference in New Issue
Block a user