diff options
Diffstat (limited to 'crypto/ecdsa/Makefile.ssl')
-rw-r--r-- | crypto/ecdsa/Makefile.ssl | 174 |
1 files changed, 174 insertions, 0 deletions
diff --git a/crypto/ecdsa/Makefile.ssl b/crypto/ecdsa/Makefile.ssl new file mode 100644 index 0000000000..d0166d02f1 --- /dev/null +++ b/crypto/ecdsa/Makefile.ssl @@ -0,0 +1,174 @@ +# +# crypto/ecdsa/Makefile +# + +DIR= ecdsa +TOP= ../.. +CC= cc +INCLUDES= -I.. -I$(TOP) -I../../include +CFLAG=-g -Wall +INSTALL_PREFIX= +OPENSSLDIR= /usr/local/ssl +INSTALLTOP=/usr/local/ssl +MAKE= make -f Makefile.ssl +MAKEDEPPROG= makedepend +MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) +MAKEFILE= Makefile.ssl +AR= ar r + +CFLAGS= $(INCLUDES) $(CFLAG) + +GENERAL=Makefile +TEST=ecdsatest.c +APPS= + +LIB=$(TOP)/libcrypto.a +LIBSRC= ecs_lib.c ecs_gen.c ecs_asn1.c ecs_ossl.c ecs_sign.c ecs_vrf.c \ + ecs_key.c ecs_err.c + +LIBOBJ= ecs_lib.o ecs_gen.o ecs_asn1.o ecs_ossl.o ecs_sign.o ecs_vrf.o \ + ecs_key.o ecs_err.o + +SRC= $(LIBSRC) + +EXHEADER= ecdsa.h +HEADER= ecs_locl.h $(EXHEADER) + +ALL= $(GENERAL) $(SRC) $(HEADER) + +top: + (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) + +all: lib + +lib: $(LIBOBJ) + $(AR) $(LIB) $(LIBOBJ) + $(RANLIB) $(LIB) || echo Never mind. + @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. + +ecs_asn1.o: ../../e_os.h ../../include/openssl/asn1.h +ecs_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h +ecs_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h +ecs_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h +ecs_asn1.o: ../../include/openssl/ec.h ../../include/openssl/err.h +ecs_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h +ecs_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h +ecs_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h +ecs_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h +ecs_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h ecdsa.h ecs_asn1.c +ecs_asn1.o: ecs_locl.h +ecs_err.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h +ecs_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h +ecs_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h +ecs_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdsa.h +ecs_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h +ecs_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h +ecs_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h +ecs_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h +ecs_err.o: ecs_err.c +ecs_gen.o: ../../e_os.h ../../include/openssl/asn1.h +ecs_gen.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h +ecs_gen.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h +ecs_gen.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h +ecs_gen.o: ../../include/openssl/ec.h ../../include/openssl/ecdsa.h +ecs_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h +ecs_gen.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h +ecs_gen.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h +ecs_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h +ecs_gen.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h +ecs_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h +ecs_gen.o: ../../include/openssl/symhacks.h ../cryptlib.h ecs_gen.c +ecs_key.o: ../../e_os.h ../../include/openssl/asn1.h +ecs_key.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h +ecs_key.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h +ecs_key.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h +ecs_key.o: ../../include/openssl/ec.h ../../include/openssl/ecdsa.h +ecs_key.o: ../../include/openssl/err.h ../../include/openssl/lhash.h +ecs_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h +ecs_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h +ecs_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h +ecs_key.o: ../cryptlib.h ecs_key.c +ecs_lib.o: ../../e_os.h ../../include/openssl/asn1.h +ecs_lib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h +ecs_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h +ecs_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h +ecs_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h +ecs_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdsa.h +ecs_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h +ecs_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h +ecs_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h +ecs_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h +ecs_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h +ecs_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h +ecs_lib.o: ../cryptlib.h ecdsa.h ecs_lib.c ecs_locl.h +ecs_ossl.o: ../../e_os.h ../../include/openssl/asn1.h +ecs_ossl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h +ecs_ossl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h +ecs_ossl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h +ecs_ossl.o: ../../include/openssl/ec.h ../../include/openssl/ecdsa.h +ecs_ossl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h +ecs_ossl.o: ../../include/openssl/opensslconf.h +ecs_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h +ecs_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h +ecs_ossl.o: ../../include/openssl/symhacks.h ../cryptlib.h ecs_ossl.c +ecs_sign.o: ../../e_os.h ../../include/openssl/asn1.h +ecs_sign.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h +ecs_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h +ecs_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h +ecs_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h +ecs_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdsa.h +ecs_sign.o: ../../include/openssl/engine.h ../../include/openssl/err.h +ecs_sign.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h +ecs_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h +ecs_sign.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h +ecs_sign.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h +ecs_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h +ecs_sign.o: ../cryptlib.h ecs_sign.c +ecs_vrf.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h +ecs_vrf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h +ecs_vrf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h +ecs_vrf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h +ecs_vrf.o: ../../include/openssl/ec.h ../../include/openssl/ecdsa.h +ecs_vrf.o: ../../include/openssl/engine.h ../../include/openssl/err.h +ecs_vrf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h +ecs_vrf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h +ecs_vrf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h +ecs_vrf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h +ecs_vrf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h +ecs_vrf.o: ecs_vrf.c |