| OLD | NEW |
| 1 # | 1 # |
| 2 # OpenSSL/crypto/dso/Makefile | 2 # OpenSSL/crypto/dso/Makefile |
| 3 # | 3 # |
| 4 | 4 |
| 5 DIR= dso | 5 DIR= dso |
| 6 TOP= ../.. | 6 TOP= ../.. |
| 7 CC= cc | 7 CC= cc |
| 8 INCLUDES= -I.. -I$(TOP) -I../../include | 8 INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 CFLAG=-g | 9 CFLAG=-g |
| 10 MAKEFILE= Makefile | 10 MAKEFILE= Makefile |
| 11 AR= ar r | 11 AR= ar r |
| 12 | 12 |
| 13 CFLAGS= $(INCLUDES) $(CFLAG) | 13 CFLAGS= $(INCLUDES) $(CFLAG) |
| 14 | 14 |
| 15 GENERAL=Makefile | 15 GENERAL=Makefile |
| 16 TEST= | 16 TEST= |
| 17 APPS= | 17 APPS= |
| 18 | 18 |
| 19 LIB=$(TOP)/libcrypto.a | 19 LIB=$(TOP)/libcrypto.a |
| 20 LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c \ | 20 LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c \ |
| 21 » dso_openssl.c dso_win32.c dso_vms.c | 21 » dso_openssl.c dso_win32.c dso_vms.c dso_beos.c |
| 22 LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o dso_null.o \ | 22 LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o dso_null.o \ |
| 23 » dso_openssl.o dso_win32.o dso_vms.o | 23 » dso_openssl.o dso_win32.o dso_vms.o dso_beos.o |
| 24 | 24 |
| 25 SRC= $(LIBSRC) | 25 SRC= $(LIBSRC) |
| 26 | 26 |
| 27 EXHEADER= dso.h | 27 EXHEADER= dso.h |
| 28 HEADER= $(EXHEADER) | 28 HEADER= $(EXHEADER) |
| 29 | 29 |
| 30 ALL= $(GENERAL) $(SRC) $(HEADER) | 30 ALL= $(GENERAL) $(SRC) $(HEADER) |
| 31 | 31 |
| 32 top: | 32 top: |
| 33 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 33 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
| 34 | 34 |
| 35 all: lib | 35 all: lib |
| 36 | 36 |
| 37 lib: $(LIBOBJ) | 37 lib: $(LIBOBJ) |
| 38 » $(ARX) $(LIB) $(LIBOBJ) | 38 » $(AR) $(LIB) $(LIBOBJ) |
| 39 $(RANLIB) $(LIB) || echo Never mind. | 39 $(RANLIB) $(LIB) || echo Never mind. |
| 40 @touch lib | 40 @touch lib |
| 41 | 41 |
| 42 files: | 42 files: |
| 43 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 43 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
| 44 | 44 |
| 45 links: | 45 links: |
| 46 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | 46 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 47 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 47 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 48 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 48 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| (...skipping 20 matching lines...) Expand all Loading... |
| 69 | 69 |
| 70 dclean: | 70 dclean: |
| 71 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE
FILE) >Makefile.new | 71 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE
FILE) >Makefile.new |
| 72 mv -f Makefile.new $(MAKEFILE) | 72 mv -f Makefile.new $(MAKEFILE) |
| 73 | 73 |
| 74 clean: | 74 clean: |
| 75 rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 75 rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 76 | 76 |
| 77 # DO NOT DELETE THIS LINE -- make depend depends on it. | 77 # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 78 | 78 |
| 79 dso_beos.o: ../../e_os.h ../../include/openssl/bio.h |
| 80 dso_beos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 81 dso_beos.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 82 dso_beos.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 83 dso_beos.o: ../../include/openssl/opensslconf.h |
| 84 dso_beos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 85 dso_beos.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 86 dso_beos.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_beos.c |
| 79 dso_dl.o: ../../e_os.h ../../include/openssl/bio.h | 87 dso_dl.o: ../../e_os.h ../../include/openssl/bio.h |
| 80 dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 88 dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 81 dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 89 dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 82 dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 90 dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 83 dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 91 dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 84 dso_dl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 92 dso_dl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 85 dso_dl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 93 dso_dl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 86 dso_dl.o: ../cryptlib.h dso_dl.c | 94 dso_dl.o: ../cryptlib.h dso_dl.c |
| 87 dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h | 95 dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h |
| 88 dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 96 dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 dso_vms.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 141 dso_vms.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 134 dso_vms.o: ../cryptlib.h dso_vms.c | 142 dso_vms.o: ../cryptlib.h dso_vms.c |
| 135 dso_win32.o: ../../e_os.h ../../include/openssl/bio.h | 143 dso_win32.o: ../../e_os.h ../../include/openssl/bio.h |
| 136 dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 144 dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 137 dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 145 dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 138 dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 146 dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 139 dso_win32.o: ../../include/openssl/opensslconf.h | 147 dso_win32.o: ../../include/openssl/opensslconf.h |
| 140 dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 148 dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 141 dso_win32.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 149 dso_win32.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 142 dso_win32.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_win32.c | 150 dso_win32.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_win32.c |
| OLD | NEW |