2002-10-11 17:42:30 +00:00
|
|
|
#
|
2006-02-04 01:45:59 +00:00
|
|
|
# OpenSSL/engines/Makefile
|
2002-10-11 17:42:30 +00:00
|
|
|
#
|
|
|
|
|
2014-10-28 23:04:39 +00:00
|
|
|
#The following engines have been disabled as they currently do not build
|
2015-10-13 14:02:47 +00:00
|
|
|
# sureware ubsec
|
2014-10-28 23:04:39 +00:00
|
|
|
|
2002-10-11 17:42:30 +00:00
|
|
|
DIR= engines
|
|
|
|
TOP= ..
|
|
|
|
CC= cc
|
|
|
|
INCLUDES= -I../include
|
|
|
|
CFLAG=-g
|
2005-03-30 13:05:57 +00:00
|
|
|
MAKEFILE= Makefile
|
2002-10-11 17:42:30 +00:00
|
|
|
AR= ar r
|
2009-04-23 16:32:42 +00:00
|
|
|
ENGDIRS= ccgost
|
2006-09-21 13:07:57 +00:00
|
|
|
|
2009-04-23 16:32:42 +00:00
|
|
|
RECURSIVE_MAKE= [ -z "$(ENGDIRS)" ] || for i in $(ENGDIRS) ; do \
|
2006-09-21 13:07:57 +00:00
|
|
|
(cd $$i && echo "making $$target in $(DIR)/$$i..." && \
|
|
|
|
$(MAKE) -e TOP=../.. DIR=$$i $$target ) || exit 1; \
|
|
|
|
done;
|
2002-10-11 17:42:30 +00:00
|
|
|
|
2011-09-06 20:45:36 +00:00
|
|
|
ENGINES_ASM_OBJ=
|
|
|
|
|
2002-10-14 09:25:48 +00:00
|
|
|
PEX_LIBS=
|
|
|
|
EX_LIBS=
|
2005-05-09 00:27:37 +00:00
|
|
|
|
2002-10-11 17:42:30 +00:00
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
2011-09-06 20:45:36 +00:00
|
|
|
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
2015-01-30 18:59:32 +00:00
|
|
|
AFLAGS= $(ASFLAGS)
|
2002-10-11 17:42:30 +00:00
|
|
|
|
2002-12-05 01:42:14 +00:00
|
|
|
GENERAL=Makefile engines.com install.com engine_vector.mar
|
2002-10-11 17:42:30 +00:00
|
|
|
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
2015-12-14 18:34:14 +00:00
|
|
|
LIBNAMES= padlock capi dasync
|
|
|
|
LIBSRC= \
|
2008-05-31 22:49:32 +00:00
|
|
|
e_padlock.c \
|
2015-02-13 23:25:33 +00:00
|
|
|
e_capi.c \
|
|
|
|
e_dasync.c
|
2015-12-14 18:34:14 +00:00
|
|
|
LIBOBJ= \
|
2012-03-19 20:20:41 +00:00
|
|
|
e_padlock.o \
|
2011-09-06 20:45:36 +00:00
|
|
|
e_capi.o \
|
2015-02-13 23:25:33 +00:00
|
|
|
e_dasync.o \
|
2011-09-06 20:45:36 +00:00
|
|
|
$(ENGINES_ASM_OBJ)
|
2002-10-11 17:42:30 +00:00
|
|
|
|
2015-08-10 09:46:27 +00:00
|
|
|
TESTLIBNAMES= ossltest
|
|
|
|
TESTLIBSRC= e_ossltest.c
|
|
|
|
TESTLIBOBJ= e_ossltest.o
|
|
|
|
|
2002-10-11 17:42:30 +00:00
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
2015-12-14 18:34:14 +00:00
|
|
|
HEADER= \
|
2005-05-29 19:14:21 +00:00
|
|
|
e_chil_err.c e_chil_err.h \
|
2008-05-31 22:49:32 +00:00
|
|
|
e_ubsec_err.c e_ubsec_err.h \
|
2015-06-16 11:59:37 +00:00
|
|
|
e_capi_err.c e_capi_err.h \
|
2015-02-13 23:25:33 +00:00
|
|
|
e_ossltest_err.c e_ossltest_err.h \
|
|
|
|
e_dasync_err.c e_dasync_err.h
|
2002-10-11 17:42:30 +00:00
|
|
|
|
2015-03-26 20:44:59 +00:00
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
2002-10-11 17:42:30 +00:00
|
|
|
|
|
|
|
top:
|
|
|
|
(cd ..; $(MAKE) DIRS=$(DIR) all)
|
|
|
|
|
2006-10-20 11:23:35 +00:00
|
|
|
all: lib subdirs
|
2002-10-11 17:42:30 +00:00
|
|
|
|
2015-08-10 09:46:27 +00:00
|
|
|
lib: $(LIBOBJ) $(TESTLIBOBJ)
|
2002-10-11 17:42:30 +00:00
|
|
|
@if [ -n "$(SHARED_LIBS)" ]; then \
|
|
|
|
set -e; \
|
2015-08-10 09:46:27 +00:00
|
|
|
for l in $(LIBNAMES) $(TESTLIBNAMES); do \
|
2005-06-23 00:03:26 +00:00
|
|
|
$(MAKE) -f ../Makefile.shared -e \
|
2011-09-06 20:45:36 +00:00
|
|
|
LIBNAME=$$l LIBEXTRAS="e_$$l*.o" \
|
2002-10-14 09:25:48 +00:00
|
|
|
LIBDEPS='-L.. -lcrypto $(EX_LIBS)' \
|
2002-10-11 17:42:30 +00:00
|
|
|
link_o.$(SHLIB_TARGET); \
|
|
|
|
done; \
|
|
|
|
else \
|
|
|
|
$(AR) $(LIB) $(LIBOBJ); \
|
|
|
|
$(RANLIB) $(LIB) || echo Never mind.; \
|
|
|
|
fi; \
|
2003-01-10 16:04:07 +00:00
|
|
|
touch lib
|
2002-10-11 17:42:30 +00:00
|
|
|
|
2011-09-06 20:45:36 +00:00
|
|
|
e_padlock-x86.s: asm/e_padlock-x86.pl
|
|
|
|
$(PERL) asm/e_padlock-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
|
|
|
e_padlock-x86_64.s: asm/e_padlock-x86_64.pl
|
|
|
|
$(PERL) asm/e_padlock-x86_64.pl $(PERLASM_SCHEME) > $@
|
|
|
|
|
2006-09-21 13:07:57 +00:00
|
|
|
subdirs:
|
|
|
|
@target=all; $(RECURSIVE_MAKE)
|
|
|
|
|
2002-10-11 17:42:30 +00:00
|
|
|
files:
|
2005-03-30 13:05:57 +00:00
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
2006-09-21 13:07:57 +00:00
|
|
|
@target=files; $(RECURSIVE_MAKE)
|
2002-10-11 17:42:30 +00:00
|
|
|
|
|
|
|
# XXXXX This currently only works on systems that use .so as suffix
|
2005-05-21 16:41:34 +00:00
|
|
|
# for shared libraries as well as for Cygwin which uses the
|
|
|
|
# dlfcn_name_converter and therefore stores the engines with .so suffix, too.
|
2005-10-25 21:58:59 +00:00
|
|
|
# XXXXX This was extended to HP-UX dl targets, which use .sl suffix.
|
2008-04-17 10:19:16 +00:00
|
|
|
# XXXXX This was extended to mingw targets, which use eay32.dll suffix without lib as prefix.
|
2002-10-11 17:42:30 +00:00
|
|
|
install:
|
2005-05-15 22:23:26 +00:00
|
|
|
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
2002-10-11 17:42:30 +00:00
|
|
|
@if [ -n "$(SHARED_LIBS)" ]; then \
|
|
|
|
set -e; \
|
2010-01-16 20:05:59 +00:00
|
|
|
$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines; \
|
2002-10-11 17:42:30 +00:00
|
|
|
for l in $(LIBNAMES); do \
|
2002-10-18 19:02:18 +00:00
|
|
|
( echo installing $$l; \
|
2008-04-17 10:19:16 +00:00
|
|
|
pfx=lib; \
|
2014-09-09 17:53:16 +00:00
|
|
|
if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
|
|
|
|
sfx=".so"; \
|
|
|
|
cp cyg$$l.dll $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
|
|
|
|
else \
|
2005-10-25 21:58:59 +00:00
|
|
|
case "$(CFLAGS)" in \
|
2010-08-24 21:45:41 +00:00
|
|
|
*DSO_DLFCN*) sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;; \
|
2008-04-17 10:19:16 +00:00
|
|
|
*DSO_DL*) sfx=".sl";; \
|
|
|
|
*DSO_WIN32*) sfx="eay32.dll"; pfx=;; \
|
|
|
|
*) sfx=".bad";; \
|
2005-10-25 21:58:59 +00:00
|
|
|
esac; \
|
2009-08-10 14:48:40 +00:00
|
|
|
cp $$pfx$$l$$sfx $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
|
2005-05-21 16:41:34 +00:00
|
|
|
fi; \
|
2009-08-10 14:48:40 +00:00
|
|
|
chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
|
|
|
|
mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx ); \
|
2002-10-11 17:42:30 +00:00
|
|
|
done; \
|
|
|
|
fi
|
2006-09-21 13:07:57 +00:00
|
|
|
@target=install; $(RECURSIVE_MAKE)
|
2002-10-11 17:42:30 +00:00
|
|
|
|
|
|
|
errors:
|
|
|
|
set -e; for l in $(LIBNAMES); do \
|
|
|
|
$(PERL) ../util/mkerr.pl -conf e_$$l.ec \
|
|
|
|
-nostatic -staticloader -write e_$$l.c; \
|
|
|
|
done
|
2007-05-17 17:44:09 +00:00
|
|
|
(cd ccgost; $(MAKE) PERL=$(PERL) errors)
|
2002-10-11 17:42:30 +00:00
|
|
|
|
2015-05-22 15:54:06 +00:00
|
|
|
update: local_depend
|
|
|
|
@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
|
2015-05-23 04:33:41 +00:00
|
|
|
@[ -z "$(THIS)" ] || (set -e; target=update; $(RECURSIVE_MAKE) )
|
2015-05-22 15:54:06 +00:00
|
|
|
|
|
|
|
depend: local_depend
|
|
|
|
@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
|
2006-09-21 13:07:57 +00:00
|
|
|
@[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
|
2015-05-22 15:54:06 +00:00
|
|
|
local_depend:
|
2015-08-10 09:46:27 +00:00
|
|
|
@[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TESTLIBSRC)
|
2002-10-11 17:42:30 +00:00
|
|
|
|
|
|
|
clean:
|
2015-09-28 13:46:09 +00:00
|
|
|
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
2006-09-21 13:07:57 +00:00
|
|
|
@target=clean; $(RECURSIVE_MAKE)
|
2002-10-11 17:42:30 +00:00
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|