Changeset 312
- Timestamp:
- Jun 11, 2003, 12:41:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testcase/456/common.gmk
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r311 r312 9 9 10 10 ifndef PATH_TARGET 11 PATH_TARGET = .11 PATH_TARGET = bin 12 12 endif 13 13 ifndef TARGET_SRCEXT … … 80 80 81 81 $(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$@ $< 83 83 84 84 $(PATH_TARGET)/$(TARGET).gcc.exe: $(PATH_TARGET)/$(TARGET).gcc.obj 85 85 ifeq "$(TARGET_SRCEXT)" ".c" 86 if gcc -g -Zomf -Zcrtdll - o $@ -Zlinker "/LINENUMBERS /MAP:FULL /PM:VIO" $<; then true; else rm -f $@; false; fi86 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 87 87 else 88 if g++ -g -Zomf -Zcrtdll - o $@ -Zlinker "/LINENUMBERS /MAP:FULL /PM:VIO" $<; then true; else rm -f $@; false; fi88 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 89 89 endif 90 90 … … 107 107 108 108 $(PATH_TARGET)/$(TARGET).vac.lst: $(PATH_TARGET)/$(TARGET).vac.obj $(LISTOMF_DEP) 109 $(LISTOMF) -x$< > $@109 $(LISTOMF) $< > $@ 110 110 111 111 $(PATH_TARGET)/$(TARGET).gcc.lst: $(PATH_TARGET)/$(TARGET).gcc.obj $(LISTOMF_DEP) 112 $(LISTOMF) -x$< > $@112 $(LISTOMF) $< > $@ 113 113 114 114 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.