Files
harbour-core/harbour/utils/hbmake/bld_b32.bat
Viktor Szakats 376106bfd6 2008-08-05 16:29 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* 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.
2008-08-05 14:31:22 +00:00

65 lines
1.6 KiB
Batchfile

@echo off
rem
rem $Id$
rem
..\..\bin\harbour /n hbmake /i..\..\include
..\..\bin\harbour /n checks /i..\..\include
..\..\bin\harbour /n fclass1 /i..\..\include
..\..\bin\harbour /n ffile1 /i..\..\include
..\..\bin\harbour /n ft_funcs /i..\..\include
..\..\bin\harbour /n hbmutils /i..\..\include
..\..\bin\harbour /n pickarry /i..\..\include
..\..\bin\harbour /n pickfile /i..\..\include
..\..\bin\harbour /n prb_stak /i..\..\include
..\..\bin\harbour /n radios /i..\..\include
..\..\bin\harbour /n tmake /i..\..\include
echo -O2 -I..\..\include -L..\..\lib > build.tmp
echo hbmake.c >> build.tmp
echo checks.c >> build.tmp
echo fclass1.c >> build.tmp
echo ffile1.c >> build.tmp
echo ft_funcs.c >> build.tmp
echo hbmutils.c >> build.tmp
echo pickarry.c >> build.tmp
echo pickfile.c >> build.tmp
echo prb_stak.c >> build.tmp
echo radios.c >> build.tmp
echo tmake.c >> build.tmp
echo hbmlang.c >> build.tmp
echo readline.c >> build.tmp
echo hbdebug.lib >> build.tmp
echo hbvm.lib >> build.tmp
echo hbrtl.lib >> build.tmp
echo gtwin.lib >> build.tmp
echo hblang.lib >> build.tmp
echo hbrdd.lib >> build.tmp
echo hbmacro.lib >> build.tmp
echo hbpp.lib >> build.tmp
echo rddntx.lib >> build.tmp
echo rddcdx.lib >> build.tmp
echo rddfpt.lib >> build.tmp
echo hbsix.lib >> build.tmp
echo hbcommon.lib >> build.tmp
bcc32 @build.tmp
del build.tmp
del *.obj
del hbmake.c
del checks.c
del fclass1.c
del ffile1.c
del ft_funcs.c
del hbmutils.c
del pickarry.c
del pickfile.c
del prb_stak.c
del radios.c
del tmake.c