mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@78 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
102 lines
2.3 KiB
Makefile
102 lines
2.3 KiB
Makefile
#
|
|
# Copyright(C) 2007 Cameron Rich
|
|
#
|
|
# This library is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
|
|
include ../config/.config
|
|
include ../config/makefile.conf
|
|
|
|
all: libs
|
|
ifdef CONFIG_PERFORMANCE_TESTING
|
|
$(MAKE) -C test
|
|
else
|
|
ifdef CONFIG_SSL_TEST
|
|
$(MAKE) -C test
|
|
endif
|
|
endif
|
|
|
|
ifndef CONFIG_PLATFORM_WIN32
|
|
TARGET1=../$(STAGE)/libaxtls.a
|
|
BASETARGET=libaxtls.so
|
|
ifdef CONFIG_PLATFORM_CYGWIN
|
|
TARGET2=../$(STAGE)/libaxtls.dll.a
|
|
else
|
|
TARGET2=../$(STAGE)/$(LIBMINOR)
|
|
endif
|
|
|
|
# shared library major/minor numbers
|
|
LIBMAJOR=$(BASETARGET).1
|
|
LIBMINOR=$(BASETARGET).1.1
|
|
else
|
|
TARGET1=axtls.lib
|
|
TARGET2=../$(STAGE)/axtls.dll
|
|
STATIC_LIB=../$(STAGE)/axtls.static.lib
|
|
endif
|
|
|
|
libs: $(TARGET1) $(TARGET2)
|
|
|
|
OBJ=\
|
|
aes.o \
|
|
asn1.o \
|
|
bigint.o \
|
|
crypto_misc.o \
|
|
hmac.o \
|
|
os_port.o \
|
|
loader.o \
|
|
md5.o \
|
|
openssl.o \
|
|
p12.o \
|
|
rsa.o \
|
|
rc4.o \
|
|
sha1.o \
|
|
tls1.o \
|
|
tls1_svr.o \
|
|
tls1_clnt.o
|
|
|
|
include ../config/makefile.post
|
|
|
|
ifndef CONFIG_PLATFORM_WIN32 # Linux/Unix/Cygwin
|
|
|
|
$(TARGET1) : $(OBJ)
|
|
$(AR) -r $@ $(OBJ)
|
|
|
|
$(TARGET2) : $(OBJ)
|
|
ifndef CONFIG_PLATFORM_CYGWIN
|
|
$(LD) $(LDFLAGS) $(LDSHARED) -Wl,-soname,$(LIBMAJOR) -o ../$(STAGE)/$(LIBMINOR) $(OBJ)
|
|
cd ../$(STAGE); ln -sf $(LIBMINOR) $(LIBMAJOR); ln -sf $(LIBMAJOR) $(BASETARGET); cd -
|
|
else
|
|
$(LD) $(LDFLAGS) $(LDSHARED) -o ../$(STAGE)/cygaxtls.dll \
|
|
-Wl,--out-implib=../$(STAGE)/libaxtls.dll.a \
|
|
-Wl,--export-all-symbols \
|
|
-Wl,--enable-auto-import $(OBJ)
|
|
endif
|
|
|
|
else # Win32
|
|
|
|
$(TARGET1) : $(OBJ)
|
|
$(AR) /out:$@ $(OBJ)
|
|
|
|
$(TARGET2) : $(OBJ)
|
|
cp $(TARGET1) $(STATIC_LIB)
|
|
$(LD) $(LDFLAGS) $(LDSHARED) /out:$@ $(OBJ)
|
|
|
|
endif
|
|
|
|
clean::
|
|
$(MAKE) -C test clean
|
|
-@rm -f ../$(STAGE)/* *.a *.lib
|
|
|