]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/dsa/Makefile.ssl
Change #include filenames from <foo.h> to <openssl.h>.
[thirdparty/openssl.git] / crypto / dsa / Makefile.ssl
CommitLineData
d02b48c6
RE
1#
2# SSLeay/crypto/dsa/Makefile
3#
4
5DIR= dsa
6TOP= ../..
7CC= cc
8INCLUDES= -I.. -I../../include
9CFLAG=-g
10INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl
8039257d 12MAKEDEPEND= $(TOP)/util/domd $(TOP)
d02b48c6
RE
13MAKEFILE= Makefile.ssl
14AR= ar r
15
16CFLAGS= $(INCLUDES) $(CFLAG)
17
18ERR=dsa
19ERRC=dsa_err
20GENERAL=Makefile
21TEST=dsatest.c
22APPS=
23
24LIB=$(TOP)/libcrypto.a
a8da8918
UM
25LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c $(ERRC).c
26LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o $(ERRC).o
d02b48c6
RE
27
28SRC= $(LIBSRC)
29
30EXHEADER= dsa.h
31HEADER= $(EXHEADER)
32
33ALL= $(GENERAL) $(SRC) $(HEADER)
34
35top:
36 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
37
38all: lib
39
40lib: $(LIBOBJ)
41 $(AR) $(LIB) $(LIBOBJ)
99aab161 42 $(RANLIB) $(LIB)
d02b48c6
RE
43 @touch lib
44
45files:
99aab161 46 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
d02b48c6
RE
47
48links:
bb8f3c58 49 @$(TOP)/util/point.sh Makefile.ssl Makefile
ec577822 50 @$(TOP)/util/mklink.sh ../../include/openssl $(EXHEADER)
bb8f3c58
RE
51 @$(TOP)/util/mklink.sh ../../test $(TEST)
52 @$(TOP)/util/mklink.sh ../../apps $(APPS)
d02b48c6
RE
53
54install:
55 @for i in $(EXHEADER) ; \
56 do \
ec577822
BM
57 (cp $$i $(INSTALLTOP)/include/openssl/$$i; \
58 chmod 644 $(INSTALLTOP)/include/openssl/$$i ); \
d02b48c6
RE
59 done;
60
61tags:
62 ctags $(SRC)
63
64tests:
65
66lint:
67 lint -DLINT $(INCLUDES) $(SRC)>fluff
68
69depend:
70 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC)
71
72dclean:
99aab161 73 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
d02b48c6
RE
74 mv -f Makefile.new $(MAKEFILE)
75
76clean:
bb8f3c58 77 rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
d02b48c6 78
6c8abdd7
DSH
79errors: $(ERRC).c
80
81$(ERRC).c: $(ERR).err
99aab161
UM
82 $(PERL) $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
83 $(PERL) ../err/err_genc.pl -s $(ERR).h $(ERRC).c
d02b48c6
RE
84
85# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 86
a8da8918
UM
87dsa_asn1.o: ../../include/asn1.h ../../include/asn1_mac.h ../../include/bio.h
88dsa_asn1.o: ../../include/blowfish.h ../../include/bn.h ../../include/buffer.h
89dsa_asn1.o: ../../include/cast.h ../../include/des.h ../../include/dh.h
90dsa_asn1.o: ../../include/e_os.h ../../include/err.h ../../include/evp.h
91dsa_asn1.o: ../../include/idea.h ../../include/md2.h ../../include/md5.h
92dsa_asn1.o: ../../include/mdc2.h ../../include/objects.h ../../include/pkcs7.h
93dsa_asn1.o: ../../include/rc2.h ../../include/rc4.h ../../include/rc5.h
f73e07cf
BL
94dsa_asn1.o: ../../include/ripemd.h ../../include/rsa.h
95dsa_asn1.o: ../../include/safestack.h ../../include/sha.h ../../include/stack.h
96dsa_asn1.o: ../../include/x509.h ../../include/x509_vfy.h ../cryptlib.h
61f5b6f3
BL
97dsa_asn1.o: ../crypto.h ../opensslconf.h ../opensslv.h dsa.h
98dsa_err.o: ../../include/bn.h ../../include/err.h ../opensslconf.h dsa.h
6242bb9c
BL
99dsa_gen.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h
100dsa_gen.o: ../../include/e_os.h ../../include/err.h ../../include/rand.h
101dsa_gen.o: ../../include/sha.h ../../include/stack.h ../cryptlib.h ../crypto.h
61f5b6f3 102dsa_gen.o: ../opensslconf.h ../opensslv.h dsa.h
6242bb9c
BL
103dsa_key.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h
104dsa_key.o: ../../include/e_os.h ../../include/err.h ../../include/rand.h
105dsa_key.o: ../../include/sha.h ../../include/stack.h ../cryptlib.h ../crypto.h
61f5b6f3 106dsa_key.o: ../opensslconf.h ../opensslv.h dsa.h
6242bb9c
BL
107dsa_lib.o: ../../include/asn1.h ../../include/bio.h ../../include/bn.h
108dsa_lib.o: ../../include/buffer.h ../../include/e_os.h ../../include/err.h
61f5b6f3
BL
109dsa_lib.o: ../../include/stack.h ../cryptlib.h ../crypto.h ../opensslconf.h
110dsa_lib.o: ../opensslv.h dsa.h
6242bb9c
BL
111dsa_sign.o: ../../include/asn1.h ../../include/bio.h ../../include/bn.h
112dsa_sign.o: ../../include/buffer.h ../../include/e_os.h ../../include/err.h
113dsa_sign.o: ../../include/rand.h ../../include/stack.h ../cryptlib.h
61f5b6f3 114dsa_sign.o: ../crypto.h ../opensslconf.h ../opensslv.h dsa.h
6242bb9c
BL
115dsa_vrf.o: ../../include/asn1.h ../../include/asn1_mac.h ../../include/bio.h
116dsa_vrf.o: ../../include/blowfish.h ../../include/bn.h ../../include/buffer.h
117dsa_vrf.o: ../../include/cast.h ../../include/des.h ../../include/dh.h
118dsa_vrf.o: ../../include/e_os.h ../../include/err.h ../../include/evp.h
119dsa_vrf.o: ../../include/idea.h ../../include/md2.h ../../include/md5.h
120dsa_vrf.o: ../../include/mdc2.h ../../include/objects.h ../../include/pkcs7.h
121dsa_vrf.o: ../../include/rand.h ../../include/rc2.h ../../include/rc4.h
122dsa_vrf.o: ../../include/rc5.h ../../include/ripemd.h ../../include/rsa.h
f73e07cf
BL
123dsa_vrf.o: ../../include/safestack.h ../../include/sha.h ../../include/stack.h
124dsa_vrf.o: ../../include/x509.h ../../include/x509_vfy.h ../cryptlib.h
61f5b6f3 125dsa_vrf.o: ../crypto.h ../opensslconf.h ../opensslv.h dsa.h