| OLD | NEW |
| 1 # | 1 # |
| 2 # OpenSSL/crypto/comp/Makefile | 2 # OpenSSL/crypto/comp/Makefile |
| 3 # | 3 # |
| 4 | 4 |
| 5 DIR= comp | 5 DIR= comp |
| 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 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 HEADER= $(EXHEADER) | 29 HEADER= $(EXHEADER) |
| 30 | 30 |
| 31 ALL= $(GENERAL) $(SRC) $(HEADER) | 31 ALL= $(GENERAL) $(SRC) $(HEADER) |
| 32 | 32 |
| 33 top: | 33 top: |
| 34 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 34 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
| 35 | 35 |
| 36 all: lib | 36 all: lib |
| 37 | 37 |
| 38 lib: $(LIBOBJ) | 38 lib: $(LIBOBJ) |
| 39 » $(ARX) $(LIB) $(LIBOBJ) | 39 » $(AR) $(LIB) $(LIBOBJ) |
| 40 $(RANLIB) $(LIB) || echo Never mind. | 40 $(RANLIB) $(LIB) || echo Never mind. |
| 41 @touch lib | 41 @touch lib |
| 42 | 42 |
| 43 files: | 43 files: |
| 44 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 44 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
| 45 | 45 |
| 46 links: | 46 links: |
| 47 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | 47 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 48 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 48 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 49 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 49 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 99 comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 100 comp_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 100 comp_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 101 comp_err.o: ../../include/openssl/symhacks.h comp_err.c | 101 comp_err.o: ../../include/openssl/symhacks.h comp_err.c |
| 102 comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 102 comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 103 comp_lib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h | 103 comp_lib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h |
| 104 comp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h | 104 comp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h |
| 105 comp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 105 comp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 106 comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 106 comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 107 comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 107 comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 108 comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c | 108 comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c |
| OLD | NEW |