equal
deleted
inserted
replaced
163 # This pattern is used to transform the output of the microsoft CL compiler |
163 # This pattern is used to transform the output of the microsoft CL compiler |
164 # into a make syntax dependency file (.d) |
164 # into a make syntax dependency file (.d) |
165 WINDOWS_SHOWINCLUDE_SED_PATTERN := \ |
165 WINDOWS_SHOWINCLUDE_SED_PATTERN := \ |
166 -e '/^Note: including file:/!d' \ |
166 -e '/^Note: including file:/!d' \ |
167 -e 's|Note: including file: *||' \ |
167 -e 's|Note: including file: *||' \ |
|
168 -e 's|\r||g' \ |
168 -e 's|\\|/|g' \ |
169 -e 's|\\|/|g' \ |
169 -e 's|^\([a-zA-Z]\):|$(UNIX_PATH_PREFIX)/\1|g' \ |
170 -e 's|^\([a-zA-Z]\):|$(UNIX_PATH_PREFIX)/\1|g' \ |
170 -e '\|$(TOPDIR)|I !d' \ |
171 -e '\|$(TOPDIR)|I !d' \ |
171 -e 's|$$$$| \\|g' \ |
172 -e 's|$$$$| \\|g' \ |
172 # |
173 # |