PRODUCT : Borland C++ NUMBER : 1156 VERSION : 3.1 OS : DOS DATE : October 19, 1993 PAGE : 1/2 TITLE : Creating libraries for the Engine Database Framework. Users of the Paradox Engine Database Framework 3.0's may encounter some difficulties with the MAKEFILE provided for the Borland C++ compiler (\PXENG30\C\SOURCE\MAKEFILE.BC); the MAKEFILE always make a library file called DBFENG.LIB regardless of the options set. This document provides a batch file for running the make facility. You will need to put the batch files in the \PXENG30\C\SOURCE directory (same as the makefile). You will need to also ensure that you do not have any environment variables called LIB or INCLUDE and that CCINCLUDE (line 76 of MAKEFILE.BC) points to your Borland C++ include path ( usually C:\BORLANDC\INCLUDE ). NOTE: The library files' names are provided as examples only. REM -------------------BEGIN makeall.bat----------------------- REM make large dos database framework make -B -DMDL=l -fmakefile.bc cd ..\lib rename dbfeng.lib df_dl.lib cd ..\source REM make large dos database framework with debug make -B -DMDL=l -DDBG -fmakefile.bc cd ..\lib rename dbfeng.lib df_dl_d.lib cd ..\source REM make large windows database framework make -B -DMDL=l -DWINDOWS -fmakefile.bc cd ..\lib rename dbfeng.lib df_wl.lib cd ..\source REM make large windows database framework with debug make -B -DMDL=l -DWINDOWS -DDBG -fmakefile.bc cd ..\lib rename dbfeng.lib df_wl_d.lib cd ..\source REM make large windows dynamic database framework PRODUCT : Borland C++ NUMBER : 1156 VERSION : 3.1 OS : DOS DATE : October 19, 1993 PAGE : 2/2 TITLE : Creating libraries for the Engine Database Framework. make -B -DMDL=l -DWINDOWS -DDYNAMIC -fmakefile.bc cd ..\lib rename dbfeng.lib df_dwl.lib cd ..\source REM make large windows database framework with debug make -B -DMDL=l -DWINDOWS -DDYNAMIC -DDBG -fmakefile.bc cd ..\lib rename dbfeng.lib df_dwl_d.lib cd ..\source REM --------------------END makeall.bat------------------------ After executing this batch file, you will see six files in your \PXENG30\C\LIB directory. Feel free to change the names to your liking. DISCLAIMER: You have the right to use this technical information subject to the terms of the No-Nonsense License Statement that you received with the Borland product to which this information pertains.