| # |
| # OpenSSL/crypto/asn1/Makefile |
| # |
| |
| DIR= asn1 |
| TOP= ../.. |
| CC= cc |
| INCLUDES= -I.. -I$(TOP) -I../../include |
| CFLAG=-g |
| MAKEFILE= Makefile |
| AR= ar r |
| |
| CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG) |
| |
| GENERAL=Makefile README |
| |
| LIB=$(TOP)/libcrypto.a |
| LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ |
| a_print.c a_type.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ |
| a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \ |
| x_algor.c x_val.c x_sig.c x_bignum.c \ |
| x_long.c x_info.c x_spki.c nsseq.c \ |
| d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ |
| t_pkey.c t_spki.c t_bitst.c \ |
| tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ |
| tasn_prn.c tasn_scn.c ameth_lib.c \ |
| f_int.c f_string.c n_pkey.c \ |
| x_pkey.c bio_asn1.c bio_ndef.c asn_mime.c \ |
| asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_strnid.c \ |
| evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p5_scrypt.c p8_pkey.c \ |
| asn_moid.c asn_mstbl.c |
| LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ |
| a_print.o a_type.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ |
| a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ |
| x_algor.o x_val.o x_sig.o x_bignum.o \ |
| x_long.o x_info.o x_spki.o nsseq.o \ |
| d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ |
| t_pkey.o t_spki.o t_bitst.o \ |
| tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ |
| tasn_prn.o tasn_scn.o ameth_lib.o \ |
| f_int.o f_string.o n_pkey.o \ |
| x_pkey.o bio_asn1.o bio_ndef.o asn_mime.o \ |
| asn1_gen.o asn1_par.o asn1_lib.o asn1_err.o a_strnid.o \ |
| evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p5_scrypt.o p8_pkey.o \ |
| asn_moid.o asn_mstbl.o |
| |
| SRC= $(LIBSRC) |
| |
| HEADER= asn1_locl.h |
| |
| ALL= $(GENERAL) $(SRC) $(HEADER) |
| |
| top: |
| (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
| |
| test: test.c |
| cc -g -I../../include -c test.c |
| cc -g -I../../include -o test test.o -L../.. -lcrypto |
| |
| pk: pk.c |
| cc -g -I../../include -c pk.c |
| cc -g -I../../include -o pk pk.o -L../.. -lcrypto |
| |
| all: lib |
| |
| lib: $(LIBOBJ) |
| $(AR) $(LIB) $(LIBOBJ) |
| $(RANLIB) $(LIB) || echo Never mind. |
| @touch lib |
| |
| depend: |
| $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC) |
| |
| clean: |
| rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| |
| |
| # DO NOT DELETE THIS LINE -- make depend depends on it. |