diff options
author | Ralf S. Engelschall <rse@openssl.org> | 1999-03-06 12:32:06 +0000 |
---|---|---|
committer | Ralf S. Engelschall <rse@openssl.org> | 1999-03-06 12:32:06 +0000 |
commit | bb8f3c58794868c65b9ac45f11c27d3a104e279e (patch) | |
tree | 9abcf3090fbaf08ba741ec31bb479207c58296bc /tools/Makefile.ssl | |
parent | 988788f697768524f1856d22abb8db340be646d5 (diff) | |
download | openssl-new-bb8f3c58794868c65b9ac45f11c27d3a104e279e.tar.gz |
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 'tools/Makefile.ssl')
-rw-r--r-- | tools/Makefile.ssl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/Makefile.ssl b/tools/Makefile.ssl index caf0b7ea3d..23e767c841 100644 --- a/tools/Makefile.ssl +++ b/tools/Makefile.ssl @@ -31,8 +31,7 @@ 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 Makefile.ssl Makefile lint: @@ -47,7 +46,7 @@ dclean: mv -f Makefile.new $(MAKEFILE) clean: - /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff + rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff errors: |