diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-01 15:35:24 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-01 15:35:24 -0400 |
commit | 27a55617f88ea8390c6e558965944cab80069046 (patch) | |
tree | 92dfd7e34a51b04c1eb6f14db6690bd12d0323f1 | |
parent | 2ed13bce1704bfb3f9b80134acc25cbf091b530e (diff) |
More Makefile fixup
-rwxr-xr-x | move.sh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -141,6 +141,12 @@ fixup_includes() ( fixup_makefiles() ( find src -type f -name Makefile \ -exec sed -ri '/^[^#]*:/ { s|^(\s*)\S+/|\1$(outdir)/| }' -- {} + + sed -ri \ + -e '/^ \$\(AM_V_at\)\$\(MKDIR_P\) \$\(dir \$@\)/d' \ + -e '/ \$\(CFLAGS\) / /g' \ + -e '/ \$\(CPPFLAGS\) / /g' \ + -e '/^[^#]*:/ { s|\S+/|$(outdir)/| }' + src/libbasic/Makefile ) move() { |