Ignore:
Timestamp:
Feb 3, 2015, 9:00:15 PM (10 years ago)
Author:
bird
Message:

tools/G*.kmk: The OS/2 librarian can convert .dll into import libraries, so pass .dll source files to it alongside .imp and .def files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/tools/GCC32.kmk

    r2774 r2775  
    233233        $(QUIET)$(APPEND) -n $(out).ar-script \
    234234                $(foreach o,$(objs), 'ADDMOD $(o)') \
    235                 $(foreach o,$(filter-out %.def %.imp,$(othersrc)), 'ADDLIB $(o)')
    236         $(if $(filter %.def %.imp,$(othersrc))\
    237                 ,$(TOOL_GCC32_AR_IMP) -o $(outbase).imp.a $(filter %.def %.imp,$(othersrc))\
     235                $(foreach o,$(filter-out %.def %.imp %.dll,$(othersrc)), 'ADDLIB $(o)')
     236        $(if $(filter %.def %.imp %.dll,$(othersrc))\
     237                ,$(TOOL_GCC32_AR_IMP) -o $(outbase).imp.a $(filter %.def %.imp %.dll,$(othersrc))\
    238238                 $(NL)$(TAB)$(QUIET)$(APPEND) $(out).ar-script 'ADDLIB $(outbase).imp.a')
    239239        $(QUIET)$(APPEND) $(out).ar-script 'SAVE'
Note: See TracChangeset for help on using the changeset viewer.