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/conf | |
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/conf')
-rw-r--r-- | crypto/conf/Makefile.ssl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/crypto/conf/Makefile.ssl b/crypto/conf/Makefile.ssl index dc396f0024..614da0a5c4 100644 --- a/crypto/conf/Makefile.ssl +++ b/crypto/conf/Makefile.ssl @@ -40,11 +40,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 @@ -71,7 +71,7 @@ depend: $(MAKEDEPEND) $(INCLUDES) $(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: @@ -80,8 +80,8 @@ clean: errors: $(ERRC).c $(ERRC).c: $(ERR).err - perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h - perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c + $(PERL) $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h + $(PERL) ../err/err_genc.pl -s $(ERR).h $(ERRC).c # DO NOT DELETE THIS LINE -- make depend depends on it. |