62 lines
1.1 KiB
Makefile
62 lines
1.1 KiB
Makefile
|
#
|
||
|
# SSLeay/tools/Makefile
|
||
|
#
|
||
|
|
||
|
DIR= tools
|
||
|
TOP= ..
|
||
|
CC= cc
|
||
|
INCLUDES= -I.. -I../../include
|
||
|
CFLAG=-g
|
||
|
INSTALL_PREFIX=
|
||
|
OPENSSLDIR= /usr/local/ssl
|
||
|
INSTALLTOP=/usr/local/ssl
|
||
|
MAKE= make -f Makefile.ssl
|
||
|
MAKEDEPEND= $(TOP)/util/domd $(TOP)
|
||
|
MAKEFILE= Makefile.ssl
|
||
|
|
||
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
||
|
|
||
|
GENERAL=Makefile.ssl
|
||
|
TEST=
|
||
|
APPS= c_rehash
|
||
|
MISC_APPS= c_hash c_info c_issuer c_name
|
||
|
|
||
|
all:
|
||
|
|
||
|
install:
|
||
|
@for i in $(APPS) ; \
|
||
|
do \
|
||
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i; \
|
||
|
chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
|
||
|
done;
|
||
|
@for i in $(MISC_APPS) ; \
|
||
|
do \
|
||
|
(cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i; \
|
||
|
chmod 755 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i ); \
|
||
|
done;
|
||
|
|
||
|
files:
|
||
|
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
||
|
|
||
|
links:
|
||
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
||
|
|
||
|
lint:
|
||
|
|
||
|
tags:
|
||
|
|
||
|
errors:
|
||
|
|
||
|
depend:
|
||
|
|
||
|
dclean:
|
||
|
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||
|
mv -f Makefile.new $(MAKEFILE)
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||
|
|
||
|
errors:
|
||
|
|
||
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|