diff options
| author | djm <> | 2010-10-01 22:54:18 +0000 |
|---|---|---|
| committer | djm <> | 2010-10-01 22:54:18 +0000 |
| commit | 31f27c0675424c286ead39df16455abf64c6fb22 (patch) | |
| tree | 5c4f646f91f36980366de4e2ab158488aea47c60 /src/lib/libcrypto/objects | |
| parent | afe4a81d4f24643c1a5682bc6b6fc3f74a7a369e (diff) | |
| parent | 75291ae343a87368ad49c13ac02f85a88159417f (diff) | |
| download | openbsd-31f27c0675424c286ead39df16455abf64c6fb22.tar.gz openbsd-31f27c0675424c286ead39df16455abf64c6fb22.tar.bz2 openbsd-31f27c0675424c286ead39df16455abf64c6fb22.zip | |
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to 'src/lib/libcrypto/objects')
| -rw-r--r-- | src/lib/libcrypto/objects/Makefile | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/src/lib/libcrypto/objects/Makefile b/src/lib/libcrypto/objects/Makefile index 25e8b23b5d..a8aedbd422 100644 --- a/src/lib/libcrypto/objects/Makefile +++ b/src/lib/libcrypto/objects/Makefile | |||
| @@ -18,23 +18,23 @@ TEST= | |||
| 18 | APPS= | 18 | APPS= |
| 19 | 19 | ||
| 20 | LIB=$(TOP)/libcrypto.a | 20 | LIB=$(TOP)/libcrypto.a |
| 21 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c | 21 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c obj_xref.c |
| 22 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o | 22 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o obj_xref.o |
| 23 | 23 | ||
| 24 | SRC= $(LIBSRC) | 24 | SRC= $(LIBSRC) |
| 25 | 25 | ||
| 26 | EXHEADER= objects.h obj_mac.h | 26 | EXHEADER= objects.h obj_mac.h |
| 27 | HEADER= $(EXHEADER) obj_dat.h | 27 | HEADER= $(EXHEADER) obj_dat.h obj_xref.h |
| 28 | 28 | ||
| 29 | ALL= $(GENERAL) $(SRC) $(HEADER) | 29 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 30 | 30 | ||
| 31 | top: | 31 | top: |
| 32 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 32 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
| 33 | 33 | ||
| 34 | all: obj_dat.h lib | 34 | all: obj_dat.h obj_xref.h lib |
| 35 | 35 | ||
| 36 | lib: $(LIBOBJ) | 36 | lib: $(LIBOBJ) |
| 37 | $(ARX) $(LIB) $(LIBOBJ) | 37 | $(AR) $(LIB) $(LIBOBJ) |
| 38 | $(RANLIB) $(LIB) || echo Never mind. | 38 | $(RANLIB) $(LIB) || echo Never mind. |
| 39 | @touch lib | 39 | @touch lib |
| 40 | 40 | ||
| @@ -46,6 +46,10 @@ obj_mac.h: objects.pl objects.txt obj_mac.num | |||
| 46 | $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h | 46 | $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h |
| 47 | @sleep 1; touch obj_mac.h; sleep 1 | 47 | @sleep 1; touch obj_mac.h; sleep 1 |
| 48 | 48 | ||
| 49 | obj_xref.h: objxref.pl obj_xref.txt obj_mac.num | ||
| 50 | $(PERL) objxref.pl obj_mac.num obj_xref.txt > obj_xref.h | ||
| 51 | @sleep 1; touch obj_xref.h; sleep 1 | ||
| 52 | |||
| 49 | files: | 53 | files: |
| 50 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 54 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
| 51 | 55 | ||
| @@ -117,3 +121,10 @@ obj_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 117 | obj_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 121 | obj_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 118 | obj_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 122 | obj_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 119 | obj_lib.o: ../cryptlib.h obj_lib.c | 123 | obj_lib.o: ../cryptlib.h obj_lib.c |
| 124 | obj_xref.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 125 | obj_xref.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 126 | obj_xref.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 127 | obj_xref.o: ../../include/openssl/opensslconf.h | ||
| 128 | obj_xref.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 129 | obj_xref.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 130 | obj_xref.o: ../../include/openssl/symhacks.h obj_xref.c obj_xref.h | ||
