2007-11-10 06:10 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

- contrib/hgf/tests/build_b32.bat
   + contrib/hgf/tests/bld_b32.bat
   - contrib/hgf/win32/makefile.bc
   + contrib/hgf/win32/make_b32.mak
   - contrib/hgf/win32/makevc.bat
   + contrib/hgf/win32/make_vc.bat
   - contrib/hgf/win32/makefile.vc
   + contrib/hgf/win32/make_vc.mak
   * contrib/hgf/win32/make_b32.bat
   - contrib/hbzlib/hrbdll.bc
   + contrib/hbzlib/make_b32_dll.bat
   - contrib/hbzlib/dll_b32.bat
   + contrib/hbzlib/make_b32_dll.mak
   - contrib/hbzlib/makefile.vc
   + contrib/hbzlib/make_vc.mak
   - contrib/hbzlib/makefile.bc
   + contrib/hbzlib/make_b32.mak
   * contrib/hbzlib/make_b32.bat
   * contrib/hbzlib/make_vc.bat
     * Some non-GNU make file cleanup.
This commit is contained in:
Viktor Szakats
2007-11-10 05:07:06 +00:00
parent cf01ca3701
commit 35a4c7b944
12 changed files with 41 additions and 7 deletions

View File

@@ -8,6 +8,28 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-11-10 06:10 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
- contrib/hgf/tests/build_b32.bat
+ contrib/hgf/tests/bld_b32.bat
- contrib/hgf/win32/makefile.bc
+ contrib/hgf/win32/make_b32.mak
- contrib/hgf/win32/makevc.bat
+ contrib/hgf/win32/make_vc.bat
- contrib/hgf/win32/makefile.vc
+ contrib/hgf/win32/make_vc.mak
* contrib/hgf/win32/make_b32.bat
- contrib/hbzlib/hrbdll.bc
+ contrib/hbzlib/make_b32_dll.bat
- contrib/hbzlib/dll_b32.bat
+ contrib/hbzlib/make_b32_dll.mak
- contrib/hbzlib/makefile.vc
+ contrib/hbzlib/make_vc.mak
- contrib/hbzlib/makefile.bc
+ contrib/hbzlib/make_b32.mak
* contrib/hbzlib/make_b32.bat
* contrib/hbzlib/make_vc.bat
* Some non-GNU make file cleanup.
2007-11-10 05:50 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* make_b32.bat
+ make_b32.mak

View File

@@ -8,7 +8,7 @@ if not exist obj\b32 md obj\b32
:BUILD
make -fmakefile.bc %1 %2 %3 > make_b32.log
make -fmake_b32.mak %1 %2 %3 > make_b32.log
if "%1" == "clean" goto CLEAN
if "%1" == "CLEAN" goto CLEAN
if errorlevel 1 goto BUILD_ERR

View File

@@ -20,7 +20,7 @@ OBJ_DIR = obj\b32
LIB_DIR = ..\..\lib\b32
IMPLIB = Implib
BCC32 = Bcc32 @bccw32.cfg
BCC32 = Bcc32 -vi -Ve -6 -R- -H- -5 -OS -w- -O2 -X- -a8 -b -k-
TLINK32 = TLink32
TLIB = TLib
BRC32 = Brc32
@@ -49,7 +49,7 @@ BOptsAt_ziparddll = $(BLocalOptsAtC32_ziparddll)
Dep_zipar = \
$(LIB_DIR)\hbzip.lib
ziparchive : BccW32.cfg $(Dep_zipar)
ziparchive : $(Dep_zipar)
echo MakeNode
CLEAN:

View File

@@ -9,7 +9,7 @@ if not exist obj\dll\b32 md obj\dll\b32
:BUILD
make -fhrbdll.bc %1 %2 %3 > dll_b32.log
make -fmake_b32_dll.mak %1 %2 %3 > dll_b32.log
if errorlevel 1 goto BUILD_ERR
if "%1" == "clean" goto CLEAN
if "%1" == "CLEAN" goto CLEAN

View File

@@ -8,7 +8,7 @@ if not exist obj\vc md obj\vc
:BUILD
nmake -fmakefile.vc %1 %2 %3 > make_vc.log
nmake -fmake_vc.mak %1 %2 %3 > make_vc.log
if errorlevel 1 goto BUILD_ERR
:BUILD_OK

View File

@@ -8,7 +8,7 @@ if "%1" == "CLEAN" goto CLEAN
:BUILD
make -fmakefile.bc %1 %2 %3 > make_b32.log
make -fmake_b32.mak %1 %2 %3 > make_b32.log
if errorlevel 1 goto BUILD_ERR
:BUILD_OK

View File

@@ -1,3 +1,7 @@
#
# $Id$
#
# makefile for Borland C/C++ 32 bits
# Building of hgfwin32.lib - Harbour GUI framework for Win32

View File

@@ -1,11 +1,15 @@
@echo off
rem
rem $Id$
rem
SET _LIB=%LIB%
SET _PATH=%PATH%
SET _INCLUDE=%INCLUDE%
SET LIB=C:\COMPILER\VC\LIB;%PATH%
SET PATH=C:\COMPILER\VC\BIN;%PATH%
SET INCLUDE=..\..\..\INCLUDE;C:\COMPILER\VC\INCLUDE;%_INCLUDE%
nmake /f makefile.vc %1 %2 %3
nmake /f make_vc.mak %1 %2 %3
SET LIB=%_LIB%
SET PATH=%_PATH%
SET INCLUDE=%_INCLUDE%

View File

@@ -1,3 +1,7 @@
#
# $Id$
#
# makefile for Microsoft Visual C++ 32 bits
# Building of hgfwin32.lib - Harbour GUI framework for Win32