diff options
Diffstat (limited to 'src/lib/libcrypto/asn1/Makefile.ssl')
| -rw-r--r-- | src/lib/libcrypto/asn1/Makefile.ssl | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/src/lib/libcrypto/asn1/Makefile.ssl b/src/lib/libcrypto/asn1/Makefile.ssl new file mode 100644 index 0000000000..30751bd156 --- /dev/null +++ b/src/lib/libcrypto/asn1/Makefile.ssl | |||
| @@ -0,0 +1,120 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/asn1/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= asn1 | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= -I.. -I../../include | ||
| 9 | CFLAG=-g | ||
| 10 | INSTALLTOP=/usr/local/ssl | ||
| 11 | MAKE= make -f Makefile.ssl | ||
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | ||
| 13 | MAKEFILE= Makefile.ssl | ||
| 14 | AR= ar r | ||
| 15 | |||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 17 | |||
| 18 | ERR=asn1 | ||
| 19 | ERRC=asn1_err | ||
| 20 | GENERAL=Makefile README | ||
| 21 | TEST= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_int.c a_octet.c a_print.c \ | ||
| 26 | a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ | ||
| 27 | a_sign.c a_digest.c a_verify.c \ | ||
| 28 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c \ | ||
| 29 | x_name.c x_cinf.c x_x509.c x_crl.c x_info.c x_spki.c \ | ||
| 30 | d2i_r_pr.c i2d_r_pr.c d2i_r_pu.c i2d_r_pu.c \ | ||
| 31 | d2i_s_pr.c i2d_s_pr.c d2i_s_pu.c i2d_s_pu.c \ | ||
| 32 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ | ||
| 33 | t_req.c t_x509.c t_pkey.c \ | ||
| 34 | p7_i_s.c p7_signi.c p7_signd.c p7_recip.c p7_enc_c.c p7_evp.c \ | ||
| 35 | p7_dgst.c p7_s_e.c p7_enc.c p7_lib.c \ | ||
| 36 | f_int.c f_string.c i2d_dhp.c i2d_dsap.c d2i_dhp.c d2i_dsap.c n_pkey.c \ | ||
| 37 | a_hdr.c x_pkey.c a_bool.c x_exten.c \ | ||
| 38 | asn1_par.c asn1_lib.c $(ERRC).c a_meth.c a_bytes.c \ | ||
| 39 | evp_asn1.c | ||
| 40 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_int.o a_octet.o a_print.o \ | ||
| 41 | a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | ||
| 42 | a_sign.o a_digest.o a_verify.o \ | ||
| 43 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o \ | ||
| 44 | x_name.o x_cinf.o x_x509.o x_crl.o x_info.o x_spki.o \ | ||
| 45 | d2i_r_pr.o i2d_r_pr.o d2i_r_pu.o i2d_r_pu.o \ | ||
| 46 | d2i_s_pr.o i2d_s_pr.o d2i_s_pu.o i2d_s_pu.o \ | ||
| 47 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | ||
| 48 | t_req.o t_x509.o t_pkey.o \ | ||
| 49 | p7_i_s.o p7_signi.o p7_signd.o p7_recip.o p7_enc_c.o p7_evp.o \ | ||
| 50 | p7_dgst.o p7_s_e.o p7_enc.o p7_lib.o \ | ||
| 51 | f_int.o f_string.o i2d_dhp.o i2d_dsap.o d2i_dhp.o d2i_dsap.o n_pkey.o \ | ||
| 52 | a_hdr.o x_pkey.o a_bool.o x_exten.o \ | ||
| 53 | asn1_par.o asn1_lib.o $(ERRC).o a_meth.o a_bytes.o \ | ||
| 54 | evp_asn1.o | ||
| 55 | |||
| 56 | SRC= $(LIBSRC) | ||
| 57 | |||
| 58 | EXHEADER= asn1.h asn1_mac.h | ||
| 59 | HEADER= $(EXHEADER) | ||
| 60 | |||
| 61 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 62 | |||
| 63 | top: | ||
| 64 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 65 | |||
| 66 | test: test.c | ||
| 67 | cc -g -I../../include -c test.c | ||
| 68 | cc -g -I../../include -o test test.o -L../.. -lcrypto | ||
| 69 | |||
| 70 | pk: pk.c | ||
| 71 | cc -g -I../../include -c pk.c | ||
| 72 | cc -g -I../../include -o pk pk.o -L../.. -lcrypto | ||
| 73 | |||
| 74 | all: lib | ||
| 75 | |||
| 76 | lib: $(LIBOBJ) | ||
| 77 | $(AR) $(LIB) $(LIBOBJ) | ||
| 78 | sh $(TOP)/util/ranlib.sh $(LIB) | ||
| 79 | @touch lib | ||
| 80 | |||
| 81 | files: | ||
| 82 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
| 83 | |||
| 84 | links: | ||
| 85 | /bin/rm -f Makefile | ||
| 86 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | ||
| 87 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | ||
| 88 | $(TOP)/util/mklink.sh ../../test $(TEST) | ||
| 89 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 90 | |||
| 91 | install: | ||
| 92 | @for i in $(EXHEADER) ; \ | ||
| 93 | do \ | ||
| 94 | (cp $$i $(INSTALLTOP)/include/$$i; \ | ||
| 95 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | ||
| 96 | done; | ||
| 97 | |||
| 98 | tags: | ||
| 99 | ctags $(SRC) | ||
| 100 | |||
| 101 | tests: | ||
| 102 | |||
| 103 | lint: | ||
| 104 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 105 | |||
| 106 | depend: | ||
| 107 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | ||
| 108 | |||
| 109 | dclean: | ||
| 110 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 111 | mv -f Makefile.new $(MAKEFILE) | ||
| 112 | |||
| 113 | clean: | ||
| 114 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 115 | |||
| 116 | errors: | ||
| 117 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 118 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 119 | |||
| 120 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
