e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
36 lines
947 B
Makefile
36 lines
947 B
Makefile
#############################################################
|
|
#
|
|
# openswan
|
|
#
|
|
#############################################################
|
|
|
|
OPENSWAN_VERSION = 2.6.38
|
|
OPENSWAN_SITE = http://download.openswan.org/openswan
|
|
OPENSWAN_DEPENDENCIES = host-bison gmp iproute2
|
|
OPENSWAN_MAKE_OPT = ARCH=$(BR2_ARCH) CC="$(TARGET_CC)" \
|
|
USERCOMPILE="$(TARGET_CFLAGS)" INC_USRLOCAL=/usr \
|
|
USE_KLIPS=false USE_MAST=false USE_NM=false
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
|
OPENSWAN_DEPENDENCIES += libcurl
|
|
OPENSWAN_MAKE_OPT += USE_LIBCURL=true
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
OPENSWAN_DEPENDENCIES += openssl
|
|
OPENSWAN_MAKE_OPT += HAVE_OPENSSL=true
|
|
ifeq ($(BR2_PACKAGE_OPENSSL_OCF),y)
|
|
OPENSWAN_MAKE_OPT += HAVE_OCF=true
|
|
endif
|
|
endif
|
|
|
|
define OPENSWAN_BUILD_CMDS
|
|
$(MAKE) -C $(@D) $(OPENSWAN_MAKE_OPT) programs
|
|
endef
|
|
|
|
define OPENSWAN_INSTALL_TARGET_CMDS
|
|
$(MAKE) -C $(@D) $(OPENSWAN_MAKE_OPT) DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|