diff options
Diffstat (limited to 'csu/Makefile')
-rw-r--r-- | csu/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/csu/Makefile b/csu/Makefile index a71649ed6e..6b6991935a 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -113,6 +113,11 @@ $(objpfx)crtn.S: $(objpfx)initfini.s -e '/@_.*_EPILOG_BEGINS/,/@_.*_EPILOG_ENDS/p' \ -e '/@TRAILER_BEGINS/,$$p' $< > $@ +# These explicit rules are necessary when the $(objpfx) subdirectory +# did not exist at the time make considered the implicit rules using it. +# This comes up with a fresh build using no_deps=t. +$(patsubst %,$(objpfx)crt%.o,i n): %.o: %.S + $(objpfx)defs.h: $(objpfx)initfini.s sed -n -e '/@TESTS_BEGIN/,/@TESTS_END/p' $< | \ $(AWK) -f defs.awk > $@ |