77b5b803c7
Passing LDFLAGS/CFLAGS when building for the host allows cmake to be compiled with the proper -rpath value (the -rpath option is added to HOST_LDFLAGS in a later commit). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
524 B
Makefile
22 lines
524 B
Makefile
CMAKE_VERSION=2.8.0
|
|
CMAKE_SOURCE=cmake-$(CMAKE_VERSION).tar.gz
|
|
CMAKE_SITE=http://www.cmake.org/files/v2.8/
|
|
|
|
define HOST_CMAKE_CONFIGURE_CMDS
|
|
(cd $(@D); \
|
|
LDFLAGS="$(HOST_LDFLAGS)" \
|
|
CFLAGS="$(HOST_CFLAGS)" \
|
|
./bootstrap --prefix=$(HOST_DIR)/usr --parallel=$(BR2_JLEVEL) \
|
|
)
|
|
endef
|
|
|
|
define HOST_CMAKE_BUILD_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define HOST_CMAKE_INSTALL_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) install
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS,package,cmake))
|
|
$(eval $(call GENTARGETS,package,cmake,host)) |