2000-10-26 21:07:28 +00:00
|
|
|
#
|
|
|
|
# OpenSSL/crypto/engine/Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
DIR= engine
|
|
|
|
TOP= ../..
|
|
|
|
CC= cc
|
2001-02-22 14:45:02 +00:00
|
|
|
INCLUDES= -I.. -I$(TOP) -I../../include
|
2000-10-26 21:07:28 +00:00
|
|
|
CFLAG=-g
|
|
|
|
INSTALL_PREFIX=
|
|
|
|
OPENSSLDIR= /usr/local/ssl
|
|
|
|
INSTALLTOP=/usr/local/ssl
|
|
|
|
MAKE= make -f Makefile.ssl
|
2001-02-19 16:06:34 +00:00
|
|
|
MAKEDEPPROG= makedepend
|
|
|
|
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
2000-10-26 21:07:28 +00:00
|
|
|
MAKEFILE= Makefile.ssl
|
|
|
|
AR= ar r
|
|
|
|
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
|
|
|
|
|
|
|
GENERAL=Makefile
|
|
|
|
TEST= enginetest.c
|
|
|
|
APPS=
|
|
|
|
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
2001-09-07 04:14:48 +00:00
|
|
|
LIBSRC= eng_err.c eng_lib.c eng_list.c eng_all.c eng_openssl.c \
|
|
|
|
eng_dyn.c eng_evp.c \
|
2001-08-18 10:22:54 +00:00
|
|
|
hw_atalla.c hw_cswift.c hw_ncipher.c hw_nuron.c hw_ubsec.c \
|
|
|
|
hw_openbsd_dev_crypto.c
|
2001-09-07 04:14:48 +00:00
|
|
|
LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_all.o eng_openssl.o \
|
|
|
|
eng_dyn.o eng_evp.o \
|
2001-08-18 10:22:54 +00:00
|
|
|
hw_atalla.o hw_cswift.o hw_ncipher.o hw_nuron.o hw_ubsec.o \
|
|
|
|
hw_openbsd_dev_crypto.o
|
2000-10-26 21:07:28 +00:00
|
|
|
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
|
|
|
EXHEADER= engine.h
|
|
|
|
HEADER= $(EXHEADER)
|
|
|
|
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
|
|
|
|
|
|
|
top:
|
|
|
|
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
|
|
|
|
|
|
|
all: lib
|
|
|
|
|
|
|
|
lib: $(LIBOBJ)
|
|
|
|
$(AR) $(LIB) $(LIBOBJ)
|
|
|
|
$(RANLIB) $(LIB)
|
|
|
|
@touch lib
|
|
|
|
|
|
|
|
files:
|
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
|
|
|
|
|
|
|
links:
|
|
|
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
|
|
|
|
|
|
|
install:
|
|
|
|
@for i in $(EXHEADER) ; \
|
|
|
|
do \
|
|
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
|
|
|
done;
|
|
|
|
|
|
|
|
tags:
|
|
|
|
ctags $(SRC)
|
|
|
|
|
|
|
|
tests:
|
|
|
|
|
|
|
|
lint:
|
|
|
|
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
|
|
|
|
|
|
|
depend:
|
|
|
|
$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
|
|
|
|
|
|
|
|
dclean:
|
|
|
|
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
|
|
|
mv -f Makefile.new $(MAKEFILE)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
|
|
|
|
2001-09-07 04:14:48 +00:00
|
|
|
eng_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
|
|
|
eng_all.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
|
|
|
eng_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
eng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
|
|
|
|
eng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
|
|
|
eng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
|
|
eng_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
|
|
|
eng_all.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
|
|
eng_all.o: ../../include/openssl/symhacks.h ../../include/openssl/types.h
|
|
|
|
eng_all.o: ../../include/openssl/ui.h eng_all.c eng_int.h
|
|
|
|
eng_dyn.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
eng_dyn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
|
|
eng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
eng_dyn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
eng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
|
|
|
eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
|
|
|
eng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
|
|
eng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
|
|
|
eng_dyn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
|
|
eng_dyn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
eng_dyn.o: ../../include/openssl/types.h ../../include/openssl/ui.h
|
|
|
|
eng_dyn.o: ../cryptlib.h eng_dyn.c eng_int.h
|
|
|
|
eng_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
|
|
|
eng_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
|
|
|
eng_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
|
|
|
|
eng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
|
|
|
eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
|
|
eng_err.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
|
|
|
eng_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
|
|
eng_err.o: ../../include/openssl/symhacks.h ../../include/openssl/types.h
|
|
|
|
eng_err.o: ../../include/openssl/ui.h eng_err.c
|
|
|
|
eng_evp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
|
|
|
eng_evp.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
|
|
|
eng_evp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
eng_evp.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
|
|
|
|
eng_evp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
|
|
eng_evp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
|
|
|
eng_evp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
|
|
|
eng_evp.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
|
|
|
eng_evp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
|
|
eng_evp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
eng_evp.o: ../../include/openssl/types.h ../../include/openssl/ui.h eng_evp.c
|
|
|
|
eng_evp.o: eng_int.h
|
|
|
|
eng_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
eng_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
|
|
eng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
eng_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
eng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
|
|
|
|
eng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
|
|
|
eng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
|
|
eng_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
|
|
|
eng_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
|
|
eng_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/types.h
|
|
|
|
eng_lib.o: ../../include/openssl/ui.h ../cryptlib.h eng_int.h eng_lib.c
|
|
|
|
eng_list.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
eng_list.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
|
|
eng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
eng_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
eng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
|
|
|
|
eng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
|
|
|
eng_list.o: ../../include/openssl/opensslconf.h
|
|
|
|
eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
|
|
|
eng_list.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
|
|
eng_list.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
eng_list.o: ../../include/openssl/types.h ../../include/openssl/ui.h
|
|
|
|
eng_list.o: ../cryptlib.h eng_int.h eng_list.c
|
|
|
|
eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
|
|
eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
|
|
eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
eng_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
eng_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
|
|
|
eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
|
|
|
eng_openssl.o: ../../include/openssl/lhash.h
|
|
|
|
eng_openssl.o: ../../include/openssl/opensslconf.h
|
|
|
|
eng_openssl.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
|
|
|
eng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
|
|
eng_openssl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
|
|
eng_openssl.o: ../../include/openssl/types.h ../../include/openssl/ui.h
|
|
|
|
eng_openssl.o: ../cryptlib.h eng_openssl.c
|
2001-02-22 14:45:02 +00:00
|
|
|
hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h
|
2001-07-30 23:57:25 +00:00
|
|
|
hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
|
|
hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
|
|
|
hw_atalla.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
2001-08-05 18:02:16 +00:00
|
|
|
hw_atalla.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
|
|
hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
|
|
|
hw_atalla.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
2001-06-05 20:32:36 +00:00
|
|
|
hw_atalla.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
2001-08-05 18:02:16 +00:00
|
|
|
hw_atalla.o: ../../include/openssl/types.h ../../include/openssl/ui.h
|
|
|
|
hw_atalla.o: ../cryptlib.h hw_atalla.c vendor_defns/atalla.h
|
2001-02-22 14:45:02 +00:00
|
|
|
hw_cswift.o: ../../e_os.h ../../include/openssl/asn1.h
|
2001-07-30 23:57:25 +00:00
|
|
|
hw_cswift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
|
|
hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
|
|
|
hw_cswift.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
2001-08-05 18:02:16 +00:00
|
|
|
hw_cswift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
|
|
hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
|
|
|
hw_cswift.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
2001-06-05 20:32:36 +00:00
|
|
|
hw_cswift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
2001-08-05 18:02:16 +00:00
|
|
|
hw_cswift.o: ../../include/openssl/types.h ../../include/openssl/ui.h
|
|
|
|
hw_cswift.o: ../cryptlib.h hw_cswift.c vendor_defns/cswift.h
|
2001-02-22 14:45:02 +00:00
|
|
|
hw_ncipher.o: ../../e_os.h ../../include/openssl/asn1.h
|
2001-07-30 23:57:25 +00:00
|
|
|
hw_ncipher.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
|
|
hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
|
|
|
hw_ncipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
|
|
|
hw_ncipher.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
2001-02-19 16:06:34 +00:00
|
|
|
hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
2000-10-26 21:07:28 +00:00
|
|
|
hw_ncipher.o: ../../include/openssl/opensslconf.h
|
|
|
|
hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
|
|
|
|
hw_ncipher.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
2001-07-30 23:57:25 +00:00
|
|
|
hw_ncipher.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
2000-11-12 22:32:18 +00:00
|
|
|
hw_ncipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
|
|
|
hw_ncipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
2001-08-05 18:02:16 +00:00
|
|
|
hw_ncipher.o: ../../include/openssl/types.h ../../include/openssl/ui.h
|
|
|
|
hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
|
|
|
hw_ncipher.o: ../cryptlib.h hw_ncipher.c vendor_defns/hwcryptohook.h
|
2001-02-22 14:45:02 +00:00
|
|
|
hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h
|
2001-07-30 23:57:25 +00:00
|
|
|
hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
|
|
hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
hw_nuron.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
hw_nuron.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
|
|
|
hw_nuron.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
2001-08-05 18:02:16 +00:00
|
|
|
hw_nuron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
|
|
hw_nuron.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
|
|
|
hw_nuron.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
2001-06-05 20:32:36 +00:00
|
|
|
hw_nuron.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
2001-08-05 18:02:16 +00:00
|
|
|
hw_nuron.o: ../../include/openssl/types.h ../../include/openssl/ui.h
|
|
|
|
hw_nuron.o: ../cryptlib.h hw_nuron.c
|
2001-08-18 10:22:54 +00:00
|
|
|
hw_openbsd_dev_crypto.o: hw_openbsd_dev_crypto.c
|
2001-02-22 14:45:02 +00:00
|
|
|
hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h
|
2001-07-30 23:57:25 +00:00
|
|
|
hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
|
|
hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
|
|
hw_ubsec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
|
|
hw_ubsec.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
|
|
|
hw_ubsec.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
2001-08-05 18:02:16 +00:00
|
|
|
hw_ubsec.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
|
|
hw_ubsec.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
|
|
|
hw_ubsec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
2001-06-05 20:32:36 +00:00
|
|
|
hw_ubsec.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
2001-08-05 18:02:16 +00:00
|
|
|
hw_ubsec.o: ../../include/openssl/types.h ../../include/openssl/ui.h
|
|
|
|
hw_ubsec.o: ../cryptlib.h hw_ubsec.c vendor_defns/hw_ubsec.h
|