Files
harbour-core/harbour/utils/hbdoc/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

86 lines
2.3 KiB
Batchfile

@echo off
rem
rem $Id$
rem
..\..\bin\harbour /n hbdoc /i..\..\include
..\..\bin\harbour /n fclass1 /i..\..\include
..\..\bin\harbour /n ffile1 /i..\..\include
..\..\bin\harbour /n ft_funcs /i..\..\include
..\..\bin\harbour /n genasc /i..\..\include
..\..\bin\harbour /n genchm /i..\..\include
..\..\bin\harbour /n genhpc /i..\..\include
..\..\bin\harbour /n genhtm /i..\..\include
..\..\bin\harbour /n genng /i..\..\include
..\..\bin\harbour /n genos2 /i..\..\include
..\..\bin\harbour /n genpdf1 /i..\..\include
..\..\bin\harbour /n genrtf /i..\..\include
..\..\bin\harbour /n gentrf /i..\..\include
..\..\bin\harbour /n html /i..\..\include
..\..\bin\harbour /n ng /i..\..\include
..\..\bin\harbour /n os2 /i..\..\include
..\..\bin\harbour /n rtf /i..\..\include
..\..\bin\harbour /n teeasc /i..\..\include
..\..\bin\harbour /n troff /i..\..\include
echo -O2 -I..\..\include -L..\..\lib > build.tmp
echo hbdoc.c >> build.tmp
echo fclass1.c >> build.tmp
echo ffile1.c >> build.tmp
echo ft_funcs.c >> build.tmp
echo genasc.c >> build.tmp
echo genchm.c >> build.tmp
echo genhpc.c >> build.tmp
echo genhtm.c >> build.tmp
echo genng.c >> build.tmp
echo genos2.c >> build.tmp
echo genpdf1.c >> build.tmp
echo genrtf.c >> build.tmp
echo gentrf.c >> build.tmp
echo html.c >> build.tmp
echo ng.c >> build.tmp
echo os2.c >> build.tmp
echo rtf.c >> build.tmp
echo teeasc.c >> build.tmp
echo troff.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 hbdoc.c
del fclass1.c
del ffile1.c
del ft_funcs.c
del genasc.c
del genchm.c
del genhpc.c
del genhtm.c
del genng.c
del genos2.c
del genpdf1.c
del genrtf.c
del gentrf.c
del html.c
del ng.c
del os2.c
del rtf.c
del teeasc.c
del troff.c