diff options
author | Greg McGary <greg@mcgary.org> | 2000-07-26 18:18:43 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 2000-07-26 18:18:43 +0000 |
commit | ac556388135e5bf0578cb24bc958870ff3a0f00c (patch) | |
tree | 4c3c8c7213d349cd412270e4346b94f85d7521e0 /Makerules | |
parent | e04b831ab49dfb24f1c1a70b3816bff5515cbab9 (diff) | |
download | glibc-ac556388135e5bf0578cb24bc958870ff3a0f00c.tar.gz glibc-ac556388135e5bf0578cb24bc958870ff3a0f00c.tar.xz glibc-ac556388135e5bf0578cb24bc958870ff3a0f00c.zip |
* Makeconfig (+link-bounded, link-libc-bounded,
link-extra-libs-bounded): New variables. (built-program-cmd): Omit $(run-program-prefix) for static BP tests. * Makerules (do-tests-clean, common-mostlyclean): Remove BP test files. * Rules (tests-bp.out): New variable. (tests): Conditionally add BP tests. (binaries-bounded): Add variable and associated rule. * csu/Makefile [build-bounded] (extra-objs, install-lib): Move conditional stuff after place where condition is defined.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makerules b/Makerules index ff79700b22..51a809515f 100644 --- a/Makerules +++ b/Makerules @@ -948,7 +948,8 @@ clean: common-clean mostlyclean: common-mostlyclean do-tests-clean: - -rm -f $(patsubst %,$(objpfx)%.out,$(tests) $(test-srcs)) + -rm -f $(addprefix $(objpfx),$(addsuffix .out,$(tests) $(test-srcs)) \ + $(addsuffix -bp.out,$(tests) $(test-srcs))) # Remove the object files. common-mostlyclean: @@ -957,7 +958,9 @@ common-mostlyclean: $(addsuffix .o,$(tests) $(test-srcs) \ $(others) \ $(sysdep-others)) \ - $(addsuffix .out,$(tests) $(test-srcs))) + $(addsuffix -bp,$(tests) $(test-srcs)) \ + $(addsuffix .out,$(tests) $(test-srcs)) \ + $(addsuffix -bp.out,$(tests) $(test-srcs))) -rm -f $(addprefix $(objpfx),$(extra-objs) $(install-lib) \ $(install-lib.so) \ $(install-lib.so:%.so=%_pic.a)) |