Changeset 312


Ignore:
Timestamp:
Jun 11, 2003, 12:41:22 PM (22 years ago)
Author:
bird
Message:

Adjustments and such.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/testcase/456/common.gmk

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r311 r312  
    99
    1010ifndef PATH_TARGET
    11 PATH_TARGET             = .
     11PATH_TARGET             = bin
    1212endif
    1313ifndef TARGET_SRCEXT
     
    8080
    8181$(PATH_TARGET)/$(TARGET).vac.exe: $(PATH_TARGET)/$(TARGET).vac.obj
    82         icc -Gd -Ti+ /B/MAP /B/LINENUMBERS -Fe$@ $<
     82        icc -Gd -Ti+ /Fm$(PATH_TARGET)/$(TARGET).vac.map /B/LINENUMBERS -Fe$@ $<
    8383       
    8484$(PATH_TARGET)/$(TARGET).gcc.exe: $(PATH_TARGET)/$(TARGET).gcc.obj
    8585ifeq "$(TARGET_SRCEXT)" ".c"
    86         if gcc -g -Zomf -Zcrtdll -o $@ -Zlinker "/LINENUMBERS /MAP:FULL /PM:VIO" $<; then true; else rm -f $@; false; fi
     86        if gcc -g -Zomf -Zcrtdll -Zmap=$(PATH_TARGET)/$(TARGET).gcc.map -o $@ -Zlinker "/LINENUMBERS /MAP:FULL /PM:VIO" $<; then true; else rm -f $@; false; fi
    8787else
    88         if g++ -g -Zomf -Zcrtdll -o $@ -Zlinker "/LINENUMBERS /MAP:FULL /PM:VIO" $<; then true; else rm -f $@; false; fi
     88        if g++ -g -Zomf -Zcrtdll -Zmap=$(PATH_TARGET)/$(TARGET).gcc..map -o $@ -Zlinker "/LINENUMBERS /MAP:FULL /PM:VIO" $<; then true; else rm -f $@; false; fi
    8989endif   
    9090
     
    107107       
    108108$(PATH_TARGET)/$(TARGET).vac.lst: $(PATH_TARGET)/$(TARGET).vac.obj $(LISTOMF_DEP)
    109         $(LISTOMF) -x $< > $@
     109        $(LISTOMF) $< > $@
    110110
    111111$(PATH_TARGET)/$(TARGET).gcc.lst: $(PATH_TARGET)/$(TARGET).gcc.obj $(LISTOMF_DEP)
    112         $(LISTOMF) -x $< > $@
     112        $(LISTOMF) $< > $@
    113113
    114114       
Note: See TracChangeset for help on using the changeset viewer.