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 /apps | |
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 'apps')
-rw-r--r-- | apps/Makefile.ssl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/Makefile.ssl b/apps/Makefile.ssl index 4c87bd35e4..e9c22d15f2 100644 --- a/apps/Makefile.ssl +++ b/apps/Makefile.ssl @@ -84,7 +84,7 @@ sreq.o: req.c $(CC) -c $(INCLUDES) $(CFLAG) -o sreq.o req.c files: - perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO + $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO install: @for i in $(EXE) $(SCRIPTS); \ @@ -111,7 +111,7 @@ depend: $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(SRC) 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) errors: @@ -132,7 +132,7 @@ $(PROGRAM): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL) @(cd ..; OPENSSL="`pwd`/apps/openssl"; export OPENSSL; sh tools/c_rehash certs) progs.h: - perl ./progs.pl $(E_EXE) >progs.h + $(PERL) ./progs.pl $(E_EXE) >progs.h $(RM) $(PROGRAM).o # DO NOT DELETE THIS LINE -- make depend depends on it. |