You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
541 B
24 lines
541 B
################################################################################
|
|
#
|
|
# CMake packages
|
|
#
|
|
################################################################################
|
|
|
|
define cmake-package
|
|
$(call PREPARE)
|
|
$(CHDIR)/$($(PKG)_DIR); \
|
|
$(TARGET_CMAKE); \
|
|
$(MAKE); \
|
|
$(MAKE) install DESTDIR=$(TARGET_DIR)
|
|
$(TARGET_RM) $(TARGET_libdir)/cmake
|
|
$(call TARGET_FOLLOWUP)
|
|
endef
|
|
|
|
define host-cmake-package
|
|
$(call PREPARE)
|
|
$(CHDIR)/$($(PKG)_DIR); \
|
|
$(HOST_CMAKE); \
|
|
$(MAKE); \
|
|
$(MAKE) install
|
|
$(call HOST_FOLLOWUP)
|
|
endef
|
|
|