Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1 | # |
| 2 | # SSLeay/crypto/dh/Makefile |
| 3 | # |
| 4 | |
| 5 | DIR= dh |
| 6 | TOP= ../.. |
| 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include |
| 9 | CFLAG=-g |
| 10 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl |
Ben Laurie | 8039257 | 1999-01-19 21:36:31 +0000 | [diff] [blame] | 12 | MAKEDEPEND= $(TOP)/util/domd $(TOP) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 13 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r |
| 15 | |
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | |
| 18 | ERR=dh |
| 19 | ERRC=dh_err |
| 20 | GENERAL=Makefile |
| 21 | TEST= dhtest.c |
| 22 | APPS= |
| 23 | |
| 24 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= dh_gen.c dh_key.c dh_lib.c dh_check.c $(ERRC).c |
| 26 | LIBOBJ= dh_gen.o dh_key.o dh_lib.o dh_check.o $(ERRC).o |
| 27 | |
| 28 | SRC= $(LIBSRC) |
| 29 | |
| 30 | EXHEADER= dh.h |
| 31 | HEADER= $(EXHEADER) |
| 32 | |
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 34 | |
| 35 | top: |
| 36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
| 37 | |
| 38 | all: lib |
| 39 | |
| 40 | lib: $(LIBOBJ) |
| 41 | $(AR) $(LIB) $(LIBOBJ) |
| 42 | sh $(TOP)/util/ranlib.sh $(LIB) |
| 43 | @touch lib |
| 44 | |
| 45 | files: |
| 46 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 47 | |
| 48 | links: |
Ralf S. Engelschall | bb8f3c5 | 1999-03-06 12:32:06 +0000 | [diff] [blame] | 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) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 53 | |
| 54 | install: |
| 55 | @for i in $(EXHEADER) ; \ |
| 56 | do \ |
| 57 | (cp $$i $(INSTALLTOP)/include/$$i; \ |
| 58 | chmod 644 $(INSTALLTOP)/include/$$i ); \ |
| 59 | done; |
| 60 | |
| 61 | tags: |
| 62 | ctags $(SRC) |
| 63 | |
| 64 | tests: |
| 65 | |
| 66 | lint: |
| 67 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 68 | |
| 69 | depend: |
| 70 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) |
| 71 | |
| 72 | dclean: |
| 73 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 74 | mv -f Makefile.new $(MAKEFILE) |
| 75 | |
| 76 | clean: |
Ralf S. Engelschall | bb8f3c5 | 1999-03-06 12:32:06 +0000 | [diff] [blame] | 77 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 78 | |
Dr. Stephen Henson | 6c8abdd | 1999-01-18 22:18:38 +0000 | [diff] [blame] | 79 | errors: $(ERRC).c |
| 80 | |
| 81 | $(ERRC).c: $(ERR).err |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 82 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 83 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 84 | |
| 85 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
Ben Laurie | 6242bb9 | 1999-03-06 14:32:48 +0000 | [diff] [blame] | 86 | |
| 87 | dh_check.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h |
| 88 | dh_check.o: ../../include/e_os.h ../../include/err.h ../../include/stack.h |
Ben Laurie | b4cadc6 | 1999-03-22 12:22:14 +0000 | [diff] [blame^] | 89 | dh_check.o: ../cryptlib.h ../crypto.h ../opensslv.h dh.h |
Ben Laurie | 6242bb9 | 1999-03-06 14:32:48 +0000 | [diff] [blame] | 90 | dh_err.o: ../../include/err.h dh.h |
| 91 | dh_gen.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h |
| 92 | dh_gen.o: ../../include/e_os.h ../../include/err.h ../../include/stack.h |
Ben Laurie | b4cadc6 | 1999-03-22 12:22:14 +0000 | [diff] [blame^] | 93 | dh_gen.o: ../cryptlib.h ../crypto.h ../opensslv.h dh.h |
Ben Laurie | 6242bb9 | 1999-03-06 14:32:48 +0000 | [diff] [blame] | 94 | dh_key.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h |
| 95 | dh_key.o: ../../include/e_os.h ../../include/err.h ../../include/rand.h |
Ben Laurie | b4cadc6 | 1999-03-22 12:22:14 +0000 | [diff] [blame^] | 96 | dh_key.o: ../../include/stack.h ../cryptlib.h ../crypto.h ../opensslv.h dh.h |
Ben Laurie | 6242bb9 | 1999-03-06 14:32:48 +0000 | [diff] [blame] | 97 | dh_lib.o: ../../include/bio.h ../../include/bn.h ../../include/buffer.h |
| 98 | dh_lib.o: ../../include/e_os.h ../../include/err.h ../../include/stack.h |
Ben Laurie | b4cadc6 | 1999-03-22 12:22:14 +0000 | [diff] [blame^] | 99 | dh_lib.o: ../cryptlib.h ../crypto.h ../opensslv.h dh.h |