blob: 3f945582577068e823ee4052eb18515c38adfc28 [file] [log] [blame]
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001#
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
Ben Laurie80392571999-01-19 21:36:31 +000012MAKEDEPEND= $(TOP)/util/domd $(TOP)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000013MAKEFILE= 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:
Ralf S. Engelschallbb8f3c51999-03-06 12:32:06 +000049 @$(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)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000053
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:
Ralf S. Engelschallbb8f3c51999-03-06 12:32:06 +000077 rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000078
Dr. Stephen Henson6c8abdd1999-01-18 22:18:38 +000079errors: $(ERRC).c
80
81$(ERRC).c: $(ERR).err
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000082 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000083 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000084
85# DO NOT DELETE THIS LINE -- make depend depends on it.
Ben Laurie6242bb91999-03-06 14:32:48 +000086
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
Ben Laurieb4cadc61999-03-22 12:22:14 +000089dh_check.o: ../cryptlib.h ../crypto.h ../opensslv.h dh.h
Ben Laurie6242bb91999-03-06 14:32:48 +000090dh_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
Ben Laurieb4cadc61999-03-22 12:22:14 +000093dh_gen.o: ../cryptlib.h ../crypto.h ../opensslv.h dh.h
Ben Laurie6242bb91999-03-06 14:32:48 +000094dh_key.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h
95dh_key.o: ../../include/e_os.h ../../include/err.h ../../include/rand.h
Ben Laurieb4cadc61999-03-22 12:22:14 +000096dh_key.o: ../../include/stack.h ../cryptlib.h ../crypto.h ../opensslv.h dh.h
Ben Laurie6242bb91999-03-06 14:32:48 +000097dh_lib.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h
98dh_lib.o: ../../include/e_os.h ../../include/err.h ../../include/stack.h
Ben Laurieb4cadc61999-03-22 12:22:14 +000099dh_lib.o: ../cryptlib.h ../crypto.h ../opensslv.h dh.h