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

    r2774 r2775  
    238238        $(QUIET)$(APPEND) -n $(out).ar-script \
    239239                $(foreach o,$(objs), 'ADDMOD $(o)') \
    240                 $(foreach o,$(filter-out %.def %.imp,$(othersrc)), 'ADDLIB $(o)')
    241         $(if $(filter %.def %.imp,$(othersrc))\
    242                 ,$(TOOL_GXX3_AR_IMP) -o $(outbase).imp.a $(filter %.def %.imp,$(othersrc))\
     240                $(foreach o,$(filter-out %.def %.imp %.dll,$(othersrc)), 'ADDLIB $(o)')
     241        $(if $(filter %.def %.imp %.dll,$(othersrc))\
     242                ,$(TOOL_GXX3_AR_IMP) -o $(outbase).imp.a $(filter %.def %.imp %.dll,$(othersrc))\
    243243                 $(NL)$(TAB)$(QUIET)$(APPEND) $(out).ar-script 'ADDLIB $(outbase).imp.a')
    244244        $(QUIET)$(APPEND) $(out).ar-script 'SAVE'
Note: See TracChangeset for help on using the changeset viewer.