9 lines
107 B
Text
9 lines
107 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
sed -E '
|
||
|
|
s/\$\(([^)]+)\)/$\1/g
|
||
|
|
s/^(.*)\+=/\1=$\1 /g
|
||
|
|
s/^include /</g
|
||
|
|
/^</ s/Make/mk/g
|
||
|
|
' "$@"
|