diff options
author | Rich Salz <rsalz@openssl.org> | 2014-12-11 23:01:16 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2014-12-11 23:01:16 +0100 |
commit | 5ab65c50ef8287b128d6642209525283e1ea07be (patch) | |
tree | 2947341d92631fcb0a0dcf8eeda32081f637d533 /Makefile.org | |
parent | RT3543: Remove #ifdef LINT (diff) | |
download | openssl-5ab65c50ef8287b128d6642209525283e1ea07be.tar.xz openssl-5ab65c50ef8287b128d6642209525283e1ea07be.zip |
RT3497: Clean up "dclean" targets
Some Makefiles had actions for "dclean" that really belonged
to the "clean" target. This is wrong because clean ends up,
well, not really cleaning everything.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'Makefile.org')
-rw-r--r-- | Makefile.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.org b/Makefile.org index 7c802e8dfe..0844925eab 100644 --- a/Makefile.org +++ b/Makefile.org @@ -476,6 +476,7 @@ libclean: clean: libclean rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c + rm -rf *.bak include/openssl certs/.0 @set -e; target=clean; $(RECURSIVE_BUILD_CMD) rm -f $(LIBS) tags TAGS rm -f openssl.pc libssl.pc libcrypto.pc @@ -504,7 +505,6 @@ gentests: $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate ); dclean: - rm -rf *.bak include/openssl certs/.0 @set -e; target=dclean; $(RECURSIVE_BUILD_CMD) rehash: rehash.time |