diff options
author | Ralf S. Engelschall <rse@openssl.org> | 1999-03-06 13:32:06 +0100 |
---|---|---|
committer | Ralf S. Engelschall <rse@openssl.org> | 1999-03-06 13:32:06 +0100 |
commit | bb8f3c58794868c65b9ac45f11c27d3a104e279e (patch) | |
tree | 9abcf3090fbaf08ba741ec31bb479207c58296bc /crypto/rc5 | |
parent | Permit null ciphers. (diff) | |
download | openssl-bb8f3c58794868c65b9ac45f11c27d3a104e279e.tar.xz openssl-bb8f3c58794868c65b9ac45f11c27d3a104e279e.zip |
General source tree makefile cleanups: Made `making xxx in yyy...' display
consistent in the source tree and replaced `/bin/rm' by `rm'. Additonally
cleaned up the `make links' target: Remove unnecessary semicolons, subsequent
redundant removes, inline point.sh into mklink.sh to speed processing and no
longer clutter the display with confusing stuff. Instead only the actually
done links are displayed.
Diffstat (limited to 'crypto/rc5')
-rw-r--r-- | crypto/rc5/Makefile.ssl | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/crypto/rc5/Makefile.ssl b/crypto/rc5/Makefile.ssl index 7c07f05fd5..a3af3b3e47 100644 --- a/crypto/rc5/Makefile.ssl +++ b/crypto/rc5/Makefile.ssl @@ -70,12 +70,10 @@ files: perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO links: - /bin/rm -f Makefile - $(TOP)/util/point.sh Makefile.ssl Makefile ; - # $(TOP)/util/point.sh ../../doc/rc5.doc rc5.doc ; - $(TOP)/util/mklink.sh ../../include $(EXHEADER) - $(TOP)/util/mklink.sh ../../test $(TEST) - $(TOP)/util/mklink.sh ../../apps $(APPS) + @$(TOP)/util/point.sh Makefile.ssl Makefile + @$(TOP)/util/mklink.sh ../../include $(EXHEADER) + @$(TOP)/util/mklink.sh ../../test $(TEST) + @$(TOP)/util/mklink.sh ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ @@ -100,14 +98,8 @@ dclean: mv -f Makefile.new $(MAKEFILE) clean: - /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff + rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff errors: # DO NOT DELETE THIS LINE -- make depend depends on it. - -rc5_ecb.o: rc5.h rc5_locl.h -rc5_enc.o: rc5.h rc5_locl.h -rc5_skey.o: rc5.h rc5_locl.h -rc5cfb64.o: rc5.h rc5_locl.h -rc5ofb64.o: rc5.h rc5_locl.h |