summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1
diff options
context:
space:
mode:
authortedu <>2014-04-15 21:04:55 +0000
committertedu <>2014-04-15 21:04:55 +0000
commit7563eb0e0e484b160bf6f094f343b2b9a5522f18 (patch)
tree8d374150d1e622b8cdba3a7969cc9e58b538997d /src/lib/libcrypto/asn1
parentffff174436807ddf0bb93a8a1415f730e7b3a342 (diff)
downloadopenbsd-7563eb0e0e484b160bf6f094f343b2b9a5522f18.tar.gz
openbsd-7563eb0e0e484b160bf6f094f343b2b9a5522f18.tar.bz2
openbsd-7563eb0e0e484b160bf6f094f343b2b9a5522f18.zip
we don't use these files for building
Diffstat (limited to 'src/lib/libcrypto/asn1')
-rw-r--r--src/lib/libcrypto/asn1/Makefile108
1 files changed, 0 insertions, 108 deletions
diff --git a/src/lib/libcrypto/asn1/Makefile b/src/lib/libcrypto/asn1/Makefile
deleted file mode 100644
index 044dfd9b94..0000000000
--- a/src/lib/libcrypto/asn1/Makefile
+++ /dev/null
@@ -1,108 +0,0 @@
1#
2# OpenSSL/crypto/asn1/Makefile
3#
4
5DIR= asn1
6TOP= ../..
7CC= cc
8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g
10MAKEFILE= Makefile
11AR= ar r
12
13CFLAGS= $(INCLUDES) $(CFLAG)
14
15GENERAL=Makefile README
16TEST=
17APPS=
18
19LIB=$(TOP)/libcrypto.a
20LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \
21 a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \
22 a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \
23 x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \
24 x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \
25 x_nx509.c d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\
26 t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \
27 tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \
28 tasn_prn.c ameth_lib.c \
29 f_int.c f_string.c n_pkey.c \
30 f_enum.c x_pkey.c a_bool.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c \
31 asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_bytes.c a_strnid.c \
32 evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c
33LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \
34 a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \
35 a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \
36 x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \
37 x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \
38 x_nx509.o d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \
39 t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \
40 tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \
41 tasn_prn.o ameth_lib.o \
42 f_int.o f_string.o n_pkey.o \
43 f_enum.o x_pkey.o a_bool.o x_exten.o bio_asn1.o bio_ndef.o asn_mime.o \
44 asn1_gen.o asn1_par.o asn1_lib.o asn1_err.o a_bytes.o a_strnid.o \
45 evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o
46
47SRC= $(LIBSRC)
48
49EXHEADER= asn1.h asn1_mac.h asn1t.h
50HEADER= $(EXHEADER) asn1_locl.h
51
52ALL= $(GENERAL) $(SRC) $(HEADER)
53
54top:
55 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
56
57test: test.c
58 cc -g -I../../include -c test.c
59 cc -g -I../../include -o test test.o -L../.. -lcrypto
60
61pk: pk.c
62 cc -g -I../../include -c pk.c
63 cc -g -I../../include -o pk pk.o -L../.. -lcrypto
64
65all: lib
66
67lib: $(LIBOBJ)
68 $(AR) $(LIB) $(LIBOBJ)
69 $(RANLIB) $(LIB) || echo Never mind.
70 @touch lib
71
72files:
73 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
74
75links:
76 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
77 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
78 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
79
80install:
81 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
82 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
83 do \
84 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
85 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
86 done;
87
88tags:
89 ctags $(SRC)
90
91tests:
92
93lint:
94 lint -DLINT $(INCLUDES) $(SRC)>fluff
95
96depend:
97 @[ -n "$(MAKEDEPEND)" ] # should be set by top Makefile...
98 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
99
100dclean:
101 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
102 mv -f Makefile.new $(MAKEFILE)
103
104clean:
105 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
106
107
108# DO NOT DELETE THIS LINE -- make depend depends on it.