Import of old SSLeay release: SSLeay 0.8.1b
[openssl.git] / crypto / asn1 / Makefile.ssl
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 LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_int.o a_octet.o a_print.o \
40         a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \
41         a_sign.o a_digest.o a_verify.o \
42         x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o \
43         x_name.o x_cinf.o x_x509.o x_crl.o x_info.o x_spki.o \
44         d2i_r_pr.o i2d_r_pr.o d2i_r_pu.o i2d_r_pu.o \
45         d2i_s_pr.o i2d_s_pr.o d2i_s_pu.o i2d_s_pu.o \
46         d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \
47         t_req.o t_x509.o t_pkey.o \
48         p7_i_s.o p7_signi.o p7_signd.o p7_recip.o p7_enc_c.o p7_evp.o \
49         p7_dgst.o p7_s_e.o p7_enc.o p7_lib.o \
50         f_int.o f_string.o i2d_dhp.o i2d_dsap.o d2i_dhp.o d2i_dsap.o n_pkey.o \
51         a_hdr.o x_pkey.o a_bool.o x_exten.o \
52         asn1_par.o asn1_lib.o $(ERRC).o a_meth.o a_bytes.o
53
54 SRC= $(LIBSRC)
55
56 EXHEADER=  asn1.h asn1_mac.h
57 HEADER= $(EXHEADER)
58
59 ALL=    $(GENERAL) $(SRC) $(HEADER)
60
61 top:
62         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
63
64 test:   test.c
65         cc -g -I../../include -c test.c
66         cc -g -I../../include -o test test.o -L../.. -lcrypto
67
68 pk:     pk.c
69         cc -g -I../../include -c pk.c
70         cc -g -I../../include -o pk pk.o -L../.. -lcrypto
71
72 all:    lib
73
74 lib:    $(LIBOBJ)
75         $(AR) $(LIB) $(LIBOBJ)
76         sh $(TOP)/util/ranlib.sh $(LIB)
77         @touch lib
78
79 files:
80         perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
81
82 links:
83         /bin/rm -f Makefile
84         $(TOP)/util/point.sh Makefile.ssl Makefile ;
85         $(TOP)/util/mklink.sh ../../include $(EXHEADER)
86         $(TOP)/util/mklink.sh ../../test $(TEST)
87         $(TOP)/util/mklink.sh ../../apps $(APPS)
88
89 install:
90         @for i in $(EXHEADER) ; \
91         do  \
92         (cp $$i $(INSTALLTOP)/include/$$i; \
93         chmod 644 $(INSTALLTOP)/include/$$i ); \
94         done;
95
96 tags:
97         ctags $(SRC)
98
99 tests:
100
101 lint:
102         lint -DLINT $(INCLUDES) $(SRC)>fluff
103
104 depend:
105         $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC)
106
107 dclean:
108         perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
109         mv -f Makefile.new $(MAKEFILE)
110
111 clean:
112         /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
113
114 errors:
115         perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
116         perl ../err/err_genc.pl $(ERR).h $(ERRC).c
117
118 # DO NOT DELETE THIS LINE -- make depend depends on it.