diff options
| author | cvs2svn <admin@example.com> | 2002-05-15 02:29:22 +0000 |
|---|---|---|
| committer | cvs2svn <admin@example.com> | 2002-05-15 02:29:22 +0000 |
| commit | 2f5692b12332315048054bcce20e370985e19970 (patch) | |
| tree | b956596a42588bfc41d32583fb4adfcdc3148db4 /src/lib/libcrypto/comp | |
| parent | 92aea9da31e1e5746c15202285d820cc2da65f0f (diff) | |
| download | openbsd-2f5692b12332315048054bcce20e370985e19970.tar.gz openbsd-2f5692b12332315048054bcce20e370985e19970.tar.bz2 openbsd-2f5692b12332315048054bcce20e370985e19970.zip | |
This commit was manufactured by cvs2git to create branch 'OPENSSL'.
Diffstat (limited to 'src/lib/libcrypto/comp')
| -rw-r--r-- | src/lib/libcrypto/comp/Makefile.ssl | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/src/lib/libcrypto/comp/Makefile.ssl b/src/lib/libcrypto/comp/Makefile.ssl new file mode 100644 index 0000000000..d946bcbafa --- /dev/null +++ b/src/lib/libcrypto/comp/Makefile.ssl | |||
| @@ -0,0 +1,99 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/comp/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= comp | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= -I.. -I../../include | ||
| 9 | CFLAG=-g | ||
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 12 | INSTALLTOP=/usr/local/ssl | ||
| 13 | MAKE= make -f Makefile.ssl | ||
| 14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | ||
| 15 | MAKEFILE= Makefile.ssl | ||
| 16 | AR= ar r | ||
| 17 | |||
| 18 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 19 | |||
| 20 | GENERAL=Makefile | ||
| 21 | TEST= | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= comp_lib.c \ | ||
| 26 | c_rle.c c_zlib.c | ||
| 27 | |||
| 28 | LIBOBJ= comp_lib.o \ | ||
| 29 | c_rle.o c_zlib.o | ||
| 30 | |||
| 31 | SRC= $(LIBSRC) | ||
| 32 | |||
| 33 | EXHEADER= comp.h | ||
| 34 | HEADER= $(EXHEADER) | ||
| 35 | |||
| 36 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 37 | |||
| 38 | top: | ||
| 39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 40 | |||
| 41 | all: lib | ||
| 42 | |||
| 43 | lib: $(LIBOBJ) | ||
| 44 | $(AR) $(LIB) $(LIBOBJ) | ||
| 45 | $(RANLIB) $(LIB) | ||
| 46 | @touch lib | ||
| 47 | |||
| 48 | files: | ||
| 49 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
| 50 | |||
| 51 | links: | ||
| 52 | @$(TOP)/util/point.sh Makefile.ssl Makefile | ||
| 53 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 54 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 56 | |||
| 57 | install: | ||
| 58 | @for i in $(EXHEADER) ; \ | ||
| 59 | do \ | ||
| 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 61 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 62 | done; | ||
| 63 | |||
| 64 | tags: | ||
| 65 | ctags $(SRC) | ||
| 66 | |||
| 67 | tests: | ||
| 68 | |||
| 69 | lint: | ||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 71 | |||
| 72 | depend: | ||
| 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | ||
| 74 | |||
| 75 | dclean: | ||
| 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 77 | mv -f Makefile.new $(MAKEFILE) | ||
| 78 | |||
| 79 | clean: | ||
| 80 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 81 | |||
| 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 83 | |||
| 84 | c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 85 | c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | ||
| 86 | c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | ||
| 87 | c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 88 | c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 89 | c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 90 | c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | ||
| 91 | c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | ||
| 92 | c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 93 | c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 94 | comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 95 | comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | ||
| 96 | comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | ||
| 97 | comp_lib.o: ../../include/openssl/opensslconf.h | ||
| 98 | comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 99 | comp_lib.o: ../../include/openssl/stack.h | ||
