diff options
author | Ulf Möller <ulf@openssl.org> | 1999-04-01 14:34:33 +0200 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 1999-04-01 14:34:33 +0200 |
commit | 99aab1619f02b184f140150c72276bf55716cc42 (patch) | |
tree | 4a242345579d7fddff7371432170b6081a3cfd8f /crypto/stack | |
parent | pre-0.9.3 development version. (diff) | |
download | openssl-99aab1619f02b184f140150c72276bf55716cc42.tar.xz openssl-99aab1619f02b184f140150c72276bf55716cc42.zip |
New Makefile variables $(RANLIB) and $(PERL).
Diffstat (limited to 'crypto/stack')
-rw-r--r-- | crypto/stack/Makefile.ssl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/stack/Makefile.ssl b/crypto/stack/Makefile.ssl index 01ad0f0984..0a9d125671 100644 --- a/crypto/stack/Makefile.ssl +++ b/crypto/stack/Makefile.ssl @@ -37,11 +37,11 @@ all: lib lib: $(LIBOBJ) $(AR) $(LIB) $(LIBOBJ) - sh $(TOP)/util/ranlib.sh $(LIB) + $(RANLIB) $(LIB) @touch lib files: - perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO + $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO links: @$(TOP)/util/point.sh Makefile.ssl Makefile @@ -68,7 +68,7 @@ depend: $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) dclean: - perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new + $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new mv -f Makefile.new $(MAKEFILE) clean: |