+ contrib/examples/rl
+ contrib/examples/rl/Makefile
+ contrib/examples/rl/hbmk_b32.bat
+ contrib/examples/rl/hbmk_vc.bat
+ contrib/examples/rl/readme.txt
+ Added build files for Clipper RL utility.
(if someone remembers :)
* contrib/examples/guestbk/hbmk_vc.bat
* contrib/examples/pp/hbmk_vc.bat
* contrib/examples/pe/hbmk_vc.bat
* contrib/examples/dbu/hbmk_b32.bat
* contrib/examples/dbu/hbmk_vc.bat
* contrib/examples/hscript/hbmk_vc.bat
* utils/hbdoc/hbmk_b32.bat
* utils/hbdoc/hbmk_vc.bat
* utils/hbmake/hbmk_b32.bat
* utils/hbmake/hbmk_vc.bat
% Removed winspool.lib from liblists.
% Removed '/subsystem:console' from MSVC commandlines.
+ Added gtwvt.lib + gdi32.lib to liblists.
(work in progress)
* contrib/examples/dbu/readme.txt
* Minor.
* contrib/examples/pe/editorhi.prg
! Fixed stupid s&r error which broke compilation.
[TOMERGE 1.0]
30 lines
773 B
Batchfile
30 lines
773 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
|
|
cl -nologo -O2 -W3 -I..\..\..\include hscript.c /link /libpath:..\..\..\lib hbcpage.lib hbdebug.lib hbvm.lib hbrtl.lib gtwin.lib hblang.lib hbrdd.lib hbmacro.lib hbpp.lib rddntx.lib rddcdx.lib rddfpt.lib hbsix.lib hbcommon.lib hbpcre.lib hbzlib.lib hbnf.lib user32.lib gdi32.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
|