Changeset 137


Ignore:
Timestamp:
May 14, 2003, 7:29:29 PM (22 years ago)
Author:
bird
Message:

IMPLIB. corrected DO.AOUT2OMF again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/Makefile

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r136 r137  
    8989DO.LIBRARY = $(AR) $(ARFLAGS) $@ $(^O)
    9090
     91# The tool to create import libraries
     92IMPLIB = $(if $(wildcard $./$(TOOLFMT)/emximp$E),$.$(TOOLFMT)/)emximp$E
     93IMPLIBFLAGS.aout.prof = -m
     94IMPLIBFLAGS.omf =
     95IMPLIBFLAGS.KIND = $(foreach x, $(subst -, ,$(firstword $(subst /, ,$(subst $.,,$@)))) \
     96                                                                $(subst -,.,$(firstword $(subst /, ,$(subst $.,,$@)))),$(IMPLIBFLAGS.$x))
     97DO.IMPLIB = $(IMPLIB) $(IMPLIBFLAGS.KIND) -o $@ $1
     98
    9199# How to create dependencies
    92100MAKEDEP = makedep
     
    99107# todo: make sure emxomf is build first.
    100108#DO.AOUT2OMF = emxomf $(strip $1 -o) $@ $<
    101 DO.AOUT2OMF = $(if $(wildcard $./aout/emxomf.exe),$.aout/)emxomf  $(strip $1 -o) $@ $<
     109DO.AOUT2OMF = $(if $(wildcard $./$(TOOLFMT)/emxomf$E),$.$(TOOLFMT)/)emxomf$E  $(strip $1 -o) $@ $<
    102110
    103111# How to filter just the object files from $^
Note: See TracChangeset for help on using the changeset viewer.