* 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.
14 lines
238 B
Batchfile
14 lines
238 B
Batchfile
@echo off
|
|
rem
|
|
rem $Id$
|
|
rem
|
|
|
|
echo -O2 -I..\..\..\include -L..\..\..\lib > build.tmp
|
|
echo pp.c hbppcomp.c hbppcore.c hbpptbl.c hbpragma.c >> build.tmp
|
|
echo hbcommon.lib >> build.tmp
|
|
bcc32 @build.tmp
|
|
del build.tmp
|
|
del *.obj
|
|
|
|
pp
|