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/GXX32.kmk

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