summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2014-12-11 17:01:16 -0500
committerRich Salz <rsalz@openssl.org>2014-12-11 17:01:16 -0500
commit5ab65c50ef8287b128d6642209525283e1ea07be (patch)
tree2947341d92631fcb0a0dcf8eeda32081f637d533 /apps
parent5cf37957fbdb7e2a1be48e15c4114d218c135f73 (diff)
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 'apps')
-rw-r--r--apps/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile
index fd53f7c1a9..a952a85aa7 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -137,11 +137,10 @@ depend:
dclean:
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
mv -f Makefile.new $(MAKEFILE)
- rm -f CA.pl
clean:
rm -f *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE)
- rm -f req
+ rm -f req CA.pl
$(DLIBSSL):
(cd ..; $(MAKE) DIRS=ssl all)