2009-03-01 16:05 UTC+0100 Viktor Szakats (harbour.01 syenar hu)

* config/win/bcc32.cf
    ! Fixed to use response files with tlib, to avoid command line 
      length limits on some systems.

  - tests/run_prg.bat
  + tests/run.bat
  - tests/run_prg_all.bat
  + tests/run_all.bat
    * Renamed to short name.
This commit is contained in:
Viktor Szakats
2009-03-01 15:06:53 +00:00
parent 42a21eb2ef
commit 6dce7a2023
4 changed files with 24 additions and 1 deletions

View File

@@ -8,6 +8,17 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-03-01 16:05 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* config/win/bcc32.cf
! Fixed to use response files with tlib, to avoid command line
length limits on some systems.
- tests/run_prg.bat
+ tests/run.bat
- tests/run_prg_all.bat
+ tests/run_all.bat
* Renamed to short name.
2009-03-01 15:27 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
- contrib/hbct/ctflist.txt
- contrib/hbodbc/odbc.txt

View File

@@ -68,9 +68,21 @@ endif
LDFLAGS = $(LINKPATHS)
#Note: The empty line below HAVE TO exist!
define lib_object
echo -+ $(subst /,\,$(LIB_DIR)/$(file)) ^& >> __lib__.tmp
endef
define create_library
echo $(subst /,\,$(LIB_DIR)/$@) > __lib__.tmp
$(foreach file, $(^F), $(lib_object))
$(AR) $(ARFLAGS) @__lib__.tmp
endef
AR = tlib.exe
ARFLAGS = $(HB_USER_AFLAGS)
AROBJS = $(foreach file, $(^F), -+$(file))
AR_RULE = $(AR) $(ARFLAGS) "$(subst /,\,$(LIB_DIR)/$@)" $(AROBJS),,
AR_RULE = $(create_library)
include $(TOP)$(ROOT)config/rules.cf