diff options
author | Matt Caswell <matt@openssl.org> | 2015-03-28 01:24:18 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-03-31 15:39:14 +0200 |
commit | 1b34e25c17493f3c4109510fc5cfb9474ab234ea (patch) | |
tree | ef7a167ed370437775f6e7fabeff09b975459a4b /ssl | |
parent | Fix some faults in util/mk1mf.pl (diff) | |
download | openssl-1b34e25c17493f3c4109510fc5cfb9474ab234ea.tar.xz openssl-1b34e25c17493f3c4109510fc5cfb9474ab234ea.zip |
Fix record layer "make clean"
The "clean" target in libssl has been updated to handle the new record
layer sub-directory.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ssl/Makefile b/ssl/Makefile index d876d91fab..39cba8b77b 100644 --- a/ssl/Makefile +++ b/ssl/Makefile @@ -105,7 +105,9 @@ dclean: mv -f Makefile.new $(MAKEFILE) clean: - rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff + rm -f $(LIBOBJ) *.obj lib tags core .pure .nfs* *.old *.bak fluff + rm -f record/*.obj record/lib record/retags record/core \ + record/.pure record/.nfs* record/*.old record/*.bak record/fluff # DO NOT DELETE THIS LINE -- make depend depends on it. |