STACK_OF(SSL_COMP) is a public type
[openssl.git] / engines / Makefile.in
1 #
2 # OpenSSL/engines/Makefile
3 #
4
5 #The following engines have been disabled as they currently do not build
6 # sureware ubsec
7
8 DIR=    engines
9 TOP=    ..
10 CC=     cc
11 INCLUDES= -I../include
12 CFLAG=-g
13 MAKEFILE=       Makefile
14 AR=             ar r
15 ENGDIRS= ccgost
16
17 RECURSIVE_MAKE= [ -z "$(ENGDIRS)" ] || for i in $(ENGDIRS) ; do \
18                     (cd $$i && echo "making $$target in $(DIR)/$$i..." && \
19                     $(MAKE) -e TOP=../.. DIR=$$i $$target ) || exit 1; \
20                 done;
21
22 ENGINES_ASM_OBJ=
23
24 PEX_LIBS=
25 EX_LIBS=
26
27 CFLAGS= $(INCLUDES) $(CFLAG)
28 ASFLAGS= $(INCLUDES) $(ASFLAG)
29 AFLAGS= $(ASFLAGS)
30
31 GENERAL=Makefile engines.com install.com engine_vector.mar
32
33 LIB=$(TOP)/libcrypto.a
34 LIBNAMES= padlock capi dasync
35 LIBSRC= \
36         e_padlock.c \
37         e_capi.c \
38         e_dasync.c
39 LIBOBJ= \
40         e_padlock.o \
41         e_capi.o \
42         e_dasync.o \
43         $(ENGINES_ASM_OBJ)
44
45 TESTLIBNAMES= ossltest
46 TESTLIBSRC= e_ossltest.c
47 TESTLIBOBJ= e_ossltest.o
48
49 SRC= $(LIBSRC)
50
51 HEADER= \
52         e_chil_err.c e_chil_err.h \
53         e_ubsec_err.c e_ubsec_err.h \
54         e_capi_err.c e_capi_err.h \
55         e_ossltest_err.c e_ossltest_err.h \
56         e_dasync_err.c e_dasync_err.h
57
58 ALL=    $(GENERAL) $(SRC) $(HEADER)
59
60 top:
61         (cd ..; $(MAKE) DIRS=$(DIR) all)
62
63 all:    lib subdirs
64
65 lib:    $(LIBOBJ) $(TESTLIBOBJ)
66         @if [ -n "$(SHARED_LIBS)" ]; then \
67                 set -e; \
68                 for l in $(LIBNAMES) $(TESTLIBNAMES); do \
69                         $(MAKE) -f ../Makefile.shared -e \
70                                 LIBNAME=$$l LIBEXTRAS="e_$$l*.o" \
71                                 LIBDEPS='-L.. -lcrypto $(EX_LIBS)' \
72                                 link_o.$(SHLIB_TARGET); \
73                 done; \
74         else \
75                 $(AR) $(LIB) $(LIBOBJ); \
76                 $(RANLIB) $(LIB) || echo Never mind.; \
77         fi; \
78         touch lib
79
80 e_padlock-x86.s:        asm/e_padlock-x86.pl
81         $(PERL) asm/e_padlock-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
82 e_padlock-x86_64.s:     asm/e_padlock-x86_64.pl
83         $(PERL) asm/e_padlock-x86_64.pl $(PERLASM_SCHEME) > $@
84
85 subdirs:
86         @target=all; $(RECURSIVE_MAKE)
87
88 files:
89         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
90         @target=files; $(RECURSIVE_MAKE)
91
92 # XXXXX This currently only works on systems that use .so as suffix
93 # for shared libraries as well as for Cygwin which uses the
94 # dlfcn_name_converter and therefore stores the engines with .so suffix, too.
95 # XXXXX This was extended to HP-UX dl targets, which use .sl suffix.
96 # XXXXX This was extended to mingw targets, which use eay32.dll suffix without lib as prefix.
97 install:
98         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
99         @if [ -n "$(SHARED_LIBS)" ]; then \
100                 set -e; \
101                 $(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines; \
102                 for l in $(LIBNAMES); do \
103                         ( echo installing $$l; \
104                           pfx=lib; \
105                           if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
106                                 sfx=".so"; \
107                                 cp cyg$$l.dll $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
108                           else \
109                                 case "$(CFLAGS)" in \
110                                 *DSO_DLFCN*)    sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;;    \
111                                 *DSO_DL*)       sfx=".sl";;     \
112                                 *DSO_WIN32*)    sfx="eay32.dll"; pfx=;; \
113                                 *)              sfx=".bad";;    \
114                                 esac; \
115                                 cp $$pfx$$l$$sfx $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
116                           fi; \
117                           chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new; \
118                           mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines/$$pfx$$l$$sfx ); \
119                 done; \
120         fi
121         @target=install; $(RECURSIVE_MAKE)
122
123 tags:
124         ctags $(SRC)
125
126 errors:
127         set -e; for l in $(LIBNAMES); do \
128                 $(PERL) ../util/mkerr.pl -conf e_$$l.ec \
129                         -nostatic -staticloader -write e_$$l.c; \
130         done
131         (cd ccgost; $(MAKE) PERL=$(PERL) errors)
132
133 tests:
134
135 lint:
136         lint -DLINT $(INCLUDES) $(SRC)>fluff
137         @target=lint; $(RECURSIVE_MAKE)
138
139 update: local_depend
140         @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
141         @[ -z "$(THIS)" ] || (set -e; target=update; $(RECURSIVE_MAKE) )
142
143 depend: local_depend
144         @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
145         @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
146 local_depend:
147         @[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TESTLIBSRC)
148
149 dclean:
150         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
151         mv -f Makefile.new $(MAKEFILE)
152         @target=dclean; $(RECURSIVE_MAKE)
153
154 clean:
155         rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
156         @target=clean; $(RECURSIVE_MAKE)
157
158 # DO NOT DELETE THIS LINE -- make depend depends on it.