]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/dh/Makefile.ssl
Fix security hole.
[thirdparty/openssl.git] / crypto / dh / Makefile.ssl
CommitLineData
d02b48c6
RE
1#
2# SSLeay/crypto/dh/Makefile
3#
4
5DIR= dh
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=dh
19ERRC=dh_err
20GENERAL=Makefile
21TEST= dhtest.c
22APPS=
23
24LIB=$(TOP)/libcrypto.a
25LIBSRC= dh_gen.c dh_key.c dh_lib.c dh_check.c $(ERRC).c
26LIBOBJ= dh_gen.o dh_key.o dh_lib.o dh_check.o $(ERRC).o
27
28SRC= $(LIBSRC)
29
30EXHEADER= dh.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)
42 sh $(TOP)/util/ranlib.sh $(LIB)
43 @touch lib
44
45files:
46 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
47
48links:
bb8f3c58
RE
49 @$(TOP)/util/point.sh Makefile.ssl Makefile
50 @$(TOP)/util/mklink.sh ../../include $(EXHEADER)
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 \
57 (cp $$i $(INSTALLTOP)/include/$$i; \
58 chmod 644 $(INSTALLTOP)/include/$$i ); \
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:
73 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
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
d02b48c6 82 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
58964a49 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
BL
86
87dh_check.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h
88dh_check.o: ../../include/e_os.h ../../include/err.h ../../include/stack.h
b4cadc6e 89dh_check.o: ../cryptlib.h ../crypto.h ../opensslv.h dh.h
6242bb9c
BL
90dh_err.o: ../../include/err.h dh.h
91dh_gen.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h
92dh_gen.o: ../../include/e_os.h ../../include/err.h ../../include/stack.h
b4cadc6e 93dh_gen.o: ../cryptlib.h ../crypto.h ../opensslv.h dh.h
6242bb9c
BL
94dh_key.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h
95dh_key.o: ../../include/e_os.h ../../include/err.h ../../include/rand.h
b4cadc6e 96dh_key.o: ../../include/stack.h ../cryptlib.h ../crypto.h ../opensslv.h dh.h
6242bb9c
BL
97dh_lib.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h
98dh_lib.o: ../../include/e_os.h ../../include/err.h ../../include/stack.h
b4cadc6e 99dh_lib.o: ../cryptlib.h ../crypto.h ../opensslv.h dh.h