mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
Signed-off-by: Justin Sobota <jsobota@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
21 lines
500 B
BlitzBasic
21 lines
500 B
BlitzBasic
DESCRIPTION = "TI OSAL library for Linux"
|
|
|
|
DEPENDS="common-csl-ip"
|
|
|
|
include osal.inc
|
|
|
|
PR = "${INC_PR}.0"
|
|
|
|
S = "${WORKDIR}/${OSAL_GIT_DESTSUFFIX}"
|
|
|
|
do_compile () {
|
|
# Build the lib
|
|
make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR}
|
|
make -f makefile_armv7 lib PDK_INSTALL_PATH=${STAGING_INCDIR}
|
|
}
|
|
|
|
do_install () {
|
|
# Install the lib
|
|
make -f makefile_armv7 install PDK_INSTALL_PATH=${STAGING_INCDIR} INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir}
|
|
}
|