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.
23 lines
524 B
23 lines
524 B
################################################################################
|
|
#
|
|
# Autotools packages
|
|
#
|
|
################################################################################
|
|
|
|
define autotools-package
|
|
$(call PREPARE)
|
|
$(CHDIR)/$($(PKG)_DIR); \
|
|
$(TARGET_CONFIGURE); \
|
|
$(MAKE); \
|
|
$(MAKE) install DESTDIR=$(TARGET_DIR)
|
|
$(call TARGET_FOLLOWUP)
|
|
endef
|
|
|
|
define host-autotools-package
|
|
$(call PREPARE)
|
|
$(CHDIR)/$($(PKG)_DIR); \
|
|
$(HOST_CONFIGURE); \
|
|
$(MAKE); \
|
|
$(MAKE) install
|
|
$(call HOST_FOLLOWUP)
|
|
endef
|
|
|