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

    r2774 r2775  
    217217TOOL_GCC3OMF_LINK_LIBRARY_DEPORD =
    218218define TOOL_GCC3OMF_LINK_LIBRARY_CMDS
    219         $(if $(filter %.def %.imp,$(othersrc))\
    220                 ,$(QUIET)$(APPEND) -n $(outbase).rsp $(filter %.def %.imp,$(othersrc))\
     219        $(if $(filter %.def %.imp %.dll,$(othersrc))\
     220                ,$(QUIET)$(APPEND) -n $(outbase).rsp $(filter %.def %.imp %.dll,$(othersrc))\
    221221                 $(NL)$(TAB)$(QUIET)$(QUIET)$(TOOL_GCC3OMF_AR_IMP) -o $(out) @$(outbase).rsp\
    222222                 $(NL)$(TAB)$(QUIET)$(RM) -f $(outbase).rsp)
    223         $(QUIET)$(APPEND) -n $(outbase).rsp $(flags) $(out) $(objs) $(filter-out %.def %.imp,$(othersrc))
     223        $(QUIET)$(APPEND) -n $(outbase).rsp $(flags) $(out) $(objs) $(filter-out %.def %.imp %.dll,$(othersrc))
    224224        $(QUIET)$(TOOL_GCC3OMF_AR) @$(outbase).rsp
    225225endef
Note: See TracChangeset for help on using the changeset viewer.