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
543 B

################################################################################
#
# CMake packages
#
################################################################################
define cmake-package
$(call PREPARE)
$(call TARGET_CMAKE)
$(CHDIR)/$($(PKG)_DIR); \
$(MAKE); \
$(MAKE) install DESTDIR=$(TARGET_DIR)
$(TARGET_RM) $(TARGET_libdir)/cmake
$(call TARGET_FOLLOWUP)
endef
define host-cmake-package
$(call PREPARE)
$(call HOST_CMAKE)
$(CHDIR)/$($(PKG)_DIR); \
$(MAKE); \
$(MAKE) install
$(call HOST_FOLLOWUP)
endef