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