home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem ---------------------------------------------------------------------
- rem Makefile for Base Calculator
- rem Copyright (C) 1996, John Zaitseff.
- rem ---------------------------------------------------------------------
- echo Makefile for Base Calculator.
- echo.
-
- rem Comment out the next 2 lines once the DELPHI variable has been set to
- rem the correct path for the Delphi v2 compiler. See a;sp a few lines
- rem further for differences between Windows 95 and NT 3.51.
-
- echo MAKE.BAT has not been modified to set the path of the Delphi compiler!
- goto End
-
- set DELPHI=C:\Apps\Delphi\Bin
- set DELHLP=C:\Apps\Delphi\Help\Tools
-
- %DELPHI%\BRCC32 -w32 -foBaseCalc.res BaseCalc.rc
- %DELPHI%\DCC32 -B -CG -$H+ -$O+ -$Q- -$R- -$U+ -$X+ BaseCalc.dpr
- ren BaseCalc.exe BASECALC.EXE
-
- cd Help
-
- rem *** Choose the top line of the next two for Windows NT, the bottom one
- rem *** for Windows 95.
- rem %DELHLP%\HCRTF /x BaseCalc.hpj
- START /w %DELHLP%\HCRTF /x BaseCalc.hpj
-
- cd ..
- ren BaseCalc.cnt BASECALC.CNT
- ren BaseCalc.hlp BASECALC.HLP
- WINHLP32 -G BASECALC.HLP
- attrib -h BaseCalc.gid
- ren BaseCalc.gid BASECALC.GID
- attrib +h BASECALC.GID
-
- echo Makefile completed.
- :End
-