d0fb7b8f81
This commit moves the imx-lib package to the newly introduced freescale-imx/ directory, and uses the new variables provided by freescale-imx/freescale-imx.mk. Signed-off-by: Henk Fijnvandraat <h.fijnvandraat@inter.nl.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
#############################################################
|
|
#
|
|
# imx-lib
|
|
#
|
|
#############################################################
|
|
|
|
IMX_LIB_VERSION = $(FREESCALE_IMX_VERSION)
|
|
IMX_LIB_SITE = $(FREESCALE_IMX_MIRROR_SITE)
|
|
IMX_LIB_LICENSE = LGPLv2.1+
|
|
# No license file included
|
|
|
|
IMX_LIB_INSTALL_STAGING = YES
|
|
|
|
# imx-lib needs access to imx-specific kernel headers
|
|
IMX_LIB_DEPENDENCIES += linux
|
|
IMX_LIB_INCLUDE = \
|
|
-I$(LINUX_DIR)/drivers/mxc/security/rng/include \
|
|
-I$(LINUX_DIR)/drivers/mxc/security/sahara2/include \
|
|
-idirafter $(LINUX_DIR)/include
|
|
|
|
IMX_LIB_MAKE_ENV = \
|
|
$(TARGET_MAKE_ENV) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CROSS_COMPILE="$(CCACHE) $(TARGET_CROSS)" \
|
|
PLATFORM=$(BR2_PACKAGE_IMX_LIB_PLATFORM) \
|
|
INCLUDE="$(IMX_LIB_INCLUDE)"
|
|
|
|
define IMX_LIB_BUILD_CMDS
|
|
$(IMX_LIB_MAKE_ENV) $(MAKE1) -C $(@D)
|
|
endef
|
|
|
|
define IMX_LIB_INSTALL_STAGING_CMDS
|
|
$(IMX_LIB_MAKE_ENV) $(MAKE1) -C $(@D) DEST_DIR=$(STAGING_DIR) install
|
|
endef
|
|
|
|
define IMX_LIB_INSTALL_TARGET_CMDS
|
|
$(IMX_LIB_MAKE_ENV) $(MAKE1) -C $(@D) DEST_DIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|