diff options
Diffstat (limited to 'src/lib/libcrypto/objects/Makefile.ssl')
-rw-r--r-- | src/lib/libcrypto/objects/Makefile.ssl | 66 |
1 files changed, 44 insertions, 22 deletions
diff --git a/src/lib/libcrypto/objects/Makefile.ssl b/src/lib/libcrypto/objects/Makefile.ssl index 320523cea1..a3a15c13c1 100644 --- a/src/lib/libcrypto/objects/Makefile.ssl +++ b/src/lib/libcrypto/objects/Makefile.ssl | |||
@@ -7,23 +7,23 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) |
13 | MAKEFILE= Makefile.ssl | 15 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 16 | AR= ar r |
15 | 17 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 18 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 19 | ||
18 | ERR=objects | ||
19 | ERRC=obj_err | ||
20 | GENERAL=Makefile README | 20 | GENERAL=Makefile README |
21 | TEST= | 21 | TEST= |
22 | APPS= | 22 | APPS= |
23 | 23 | ||
24 | LIB=$(TOP)/libcrypto.a | 24 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= obj_dat.c obj_lib.c $(ERRC).c | 25 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c |
26 | LIBOBJ= obj_dat.o obj_lib.o $(ERRC).o | 26 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o |
27 | 27 | ||
28 | SRC= $(LIBSRC) | 28 | SRC= $(LIBSRC) |
29 | 29 | ||
@@ -38,28 +38,27 @@ top: | |||
38 | all: obj_dat.h lib | 38 | all: obj_dat.h lib |
39 | 39 | ||
40 | obj_dat.h: objects.h obj_dat.pl | 40 | obj_dat.h: objects.h obj_dat.pl |
41 | perl ./obj_dat.pl < objects.h > obj_dat.h | 41 | $(PERL) ./obj_dat.pl < objects.h > obj_dat.h |
42 | 42 | ||
43 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
44 | $(AR) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
45 | sh $(TOP)/util/ranlib.sh $(LIB) | 45 | $(RANLIB) $(LIB) |
46 | @touch lib | 46 | @touch lib |
47 | 47 | ||
48 | files: | 48 | files: |
49 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
50 | 50 | ||
51 | links: | 51 | links: |
52 | /bin/rm -f Makefile | 52 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
53 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
54 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
55 | $(TOP)/util/mklink.sh ../../test $(TEST) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
56 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
57 | 56 | ||
58 | install: | 57 | install: |
59 | @for i in $(EXHEADER) ; \ | 58 | @for i in $(EXHEADER) ; \ |
60 | do \ | 59 | do \ |
61 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
62 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 61 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
63 | done; | 62 | done; |
64 | 63 | ||
65 | tags: | 64 | tags: |
@@ -71,17 +70,40 @@ lint: | |||
71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
72 | 71 | ||
73 | depend: | 72 | depend: |
74 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
75 | 74 | ||
76 | dclean: | 75 | dclean: |
77 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
78 | mv -f Makefile.new $(MAKEFILE) | 77 | mv -f Makefile.new $(MAKEFILE) |
79 | 78 | ||
80 | clean: | 79 | clean: |
81 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 80 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
82 | |||
83 | errors: | ||
84 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
85 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
86 | 81 | ||
87 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
83 | |||
84 | o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
85 | o_names.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
86 | o_names.o: ../../include/openssl/lhash.h ../../include/openssl/objects.h | ||
87 | o_names.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
88 | o_names.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
89 | obj_dat.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
90 | obj_dat.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
91 | obj_dat.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h | ||
92 | obj_dat.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
93 | obj_dat.o: ../../include/openssl/lhash.h ../../include/openssl/objects.h | ||
94 | obj_dat.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
95 | obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
96 | obj_dat.o: ../cryptlib.h obj_dat.h | ||
97 | obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
98 | obj_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
99 | obj_err.o: ../../include/openssl/err.h ../../include/openssl/objects.h | ||
100 | obj_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
101 | obj_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
102 | obj_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
103 | obj_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
104 | obj_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h | ||
105 | obj_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
106 | obj_lib.o: ../../include/openssl/lhash.h ../../include/openssl/objects.h | ||
107 | obj_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
108 | obj_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
109 | obj_lib.o: ../cryptlib.h | ||