Files
harbour-core/harbour/contrib/hbssl/hbssls/Makefile
Viktor Szakats 0593b0ede5 2010-05-31 20:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbtip/hbtipssl/Makefile
  * contrib/hbtip/Makefile
    + Always create hbtipssl. (not just when 
      openssl is detected)

  * config/detect.mk
  * contrib/hbssl/hbssls/Makefile
  * contrib/hbssl/Makefile
    * Moved openssl detection from central (core) location 
      to hbssl lib.
    ! Fixed hbssl GNU Make files after recent change in 
      static/dynamic selection.
2010-05-31 19:00:30 +00:00

43 lines
593 B
Makefile

#
# $Id$
#
ROOT := ../../../
include $(TOP)$(ROOT)config/global.mk
vpath %.c ../
LIBNAME := hbssls
C_SOURCES := \
hbssl.c \
bio.c \
err.c \
evp.c \
evpciph.c \
evpenc.c \
evpmd.c \
evppkey.c \
pem.c \
rand.c \
ssl.c \
sslciph.c \
sslctx.c \
sslsess.c \
x509.c \
ifneq ($(HB_HAS_OPENSSL),)
HB_CFLAGS += $(foreach d,$(HB_HAS_OPENSSL),-I$(d))
HB_CFLAGS += -DHB_OPENSSL_STATIC
# Patent will expire in 2010/2011
HB_CFLAGS += -DOPENSSL_NO_IDEA
include $(TOP)$(ROOT)config/lib.mk
else
include $(TOP)$(ROOT)config/none.mk
endif