# this file will clean up ONE makefile dependency rule in a file. It must # be run on every rule as it is generated by the compiler. # change all back slashes sX\\X/Xg # eliminate quotes sX\"XXg # change all spaces sX/\ X\\ Xg # except the separator after colon sX:\\X: Xg # replace last slash with backslash sX/$X \\Xg # older sed may convert newline character from 0x0d+0x0a to 0x0a # latest sed keeps newline characters of input file, so just '$' doesn't work sX/\r$X \\\rXg # kill everything before the colon sX.*o:XXg