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/idea | |
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/idea')
-rw-r--r-- | crypto/idea/Makefile.ssl | 6 | ||||
-rw-r--r-- | crypto/idea/Makefile.uni | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/crypto/idea/Makefile.ssl b/crypto/idea/Makefile.ssl index 06199ae2a4..d29abbd957 100644 --- a/crypto/idea/Makefile.ssl +++ b/crypto/idea/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: diff --git a/crypto/idea/Makefile.uni b/crypto/idea/Makefile.uni index 354123dac8..c83339ad6d 100644 --- a/crypto/idea/Makefile.uni +++ b/crypto/idea/Makefile.uni @@ -15,6 +15,7 @@ MAKE= make MAKEDEPEND= makedepend MAKEFILE= Makefile.uni AR= ar r +RANLIB= ranlib IDEA_ENC=i_cbc.o @@ -39,7 +40,7 @@ all: $(LIB) $(TEST) $(APPS) $(LIB): $(LIBOBJ) $(AR) $(LIB) $(LIBOBJ) - sh $(TOP)/ranlib.sh $(LIB) + $(RANLIB) $(LIB) test: $(TEST) ./$(TEST) |