* contrib/examples/pp/bld_b32.bat
* contrib/examples/pp/bld_vc.bat
* contrib/examples/guestbk/bld_b32.bat
* contrib/examples/guestbk/bld_vc.bat
* contrib/examples/pe/bld_b32.bat
* contrib/examples/pe/bld_vc.bat
* contrib/examples/dbu/bld_b32.bat
* contrib/examples/dbu/bld_vc.bat
* contrib/examples/hscript/bld_b32.bat
* contrib/examples/hscript/bld_vc.bat
* utils/hbdoc/bld_vc.bat
* utils/hbdoc/bld_b32.bat
* utils/hbmake/bld_vc.bat
* utils/hbmake/bld_b32.bat
+ Cleaning .c and .obj files after the build process.
! This is needed to not interfere with the GNU-make system,
which would pickup and try to compiler those temp .c files.
30 lines
740 B
Batchfile
30 lines
740 B
Batchfile
@echo off
|
|
rem
|
|
rem $Id$
|
|
rem
|
|
|
|
rem NOTE: This sample program needs hbnf.lib from contrib/hbnf
|
|
|
|
..\..\..\bin\harbour hscript /n /i..\..\..\include
|
|
bcc32 -O2 -I..\..\..\include -L..\..\..\lib hscript.c hbdebug.lib hbvm.lib hbrtl.lib gtwin.lib hblang.lib hbrdd.lib hbmacro.lib hbpp.lib rddntx.lib rddcdx.lib rddfpt.lib hbcpage.lib hbsix.lib hbcommon.lib hbpcre.lib hbhsx.lib hbnf.lib hbzlib.lib
|
|
del *.obj
|
|
del hscript.c
|
|
|
|
if not exist hscript.exe goto :EXIT
|
|
|
|
hscript dir.hs > dir.htm
|
|
hscript hello.hs > hello.htm
|
|
hscript multiply.hs > multiply.htm
|
|
hscript ugly.hs > ugly.htm
|
|
|
|
echo Ready to go!
|
|
echo.
|
|
echo Try:
|
|
echo.
|
|
echo start dir.htm
|
|
echo start hello.htm
|
|
echo start multiply.htm
|
|
echo start ugly.htm
|
|
|
|
:EXIT
|