d33b215b33
Added functions: BIO_socket BIO_connect BIO_listen BIO_accept_ex BIO_closesocket BIO_sock_info These get deprecated: BIO_gethostbyname BIO_get_port BIO_get_host_ip BIO_get_accept_socket BIO_accept Reviewed-by: Kurt Roeckx <kurt@openssl.org>
58 lines
1.2 KiB
Makefile
58 lines
1.2 KiB
Makefile
#
|
|
# OpenSSL/crypto/bio/Makefile
|
|
#
|
|
|
|
DIR= bio
|
|
TOP= ../..
|
|
CC= cc
|
|
INCLUDES= -I.. -I$(TOP) -I../../include
|
|
CFLAG=-g
|
|
MAKEFILE= Makefile
|
|
AR= ar r
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
|
|
|
GENERAL=Makefile
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
|
LIBSRC= bio_lib.c bio_cb.c bio_err.c \
|
|
bss_mem.c bss_null.c bss_fd.c \
|
|
bss_file.c bss_sock.c bss_conn.c \
|
|
bf_null.c bf_buff.c b_print.c b_dump.c b_addr.c \
|
|
b_sock.c b_sock2.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c \
|
|
bss_dgram.c
|
|
# bf_lbuf.c
|
|
LIBOBJ= bio_lib.o bio_cb.o bio_err.o \
|
|
bss_mem.o bss_null.o bss_fd.o \
|
|
bss_file.o bss_sock.o bss_conn.o \
|
|
bf_null.o bf_buff.o b_print.o b_dump.o b_addr.o \
|
|
b_sock.o b_sock2.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o \
|
|
bss_dgram.o
|
|
# bf_lbuf.o
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
HEADER= bio_lcl.h
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
|
|
|
top:
|
|
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
|
|
|
all: lib
|
|
|
|
lib: $(LIBOBJ)
|
|
$(AR) $(LIB) $(LIBOBJ)
|
|
$(RANLIB) $(LIB) || echo Never mind.
|
|
@touch lib
|
|
|
|
files:
|
|
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
|
|
|
depend:
|
|
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
|
|
|
clean:
|
|
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|