300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
34 lines
1001 B
Makefile
34 lines
1001 B
Makefile
#############################################################
|
|
#
|
|
# automake
|
|
#
|
|
#############################################################
|
|
AUTOMAKE_VERSION = 1.11.1
|
|
AUTOMAKE_SOURCE = automake-$(AUTOMAKE_VERSION).tar.bz2
|
|
AUTOMAKE_SITE = $(BR2_GNU_MIRROR)/automake
|
|
|
|
AUTOMAKE_DEPENDENCIES = host-autoconf autoconf microperl
|
|
|
|
HOST_AUTOMAKE_DEPENDENCIES = host-autoconf
|
|
|
|
define GTK_DOC_M4_INSTALL
|
|
$(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 $(HOST_DIR)/usr/share/aclocal/gtk-doc.m4
|
|
endef
|
|
|
|
# ensure staging aclocal dir exists
|
|
define HOST_AUTOMAKE_MAKE_ACLOCAL
|
|
mkdir -p $(ACLOCAL_DIR)
|
|
endef
|
|
|
|
HOST_AUTOMAKE_POST_INSTALL_HOOKS += GTK_DOC_M4_INSTALL
|
|
HOST_AUTOMAKE_POST_INSTALL_HOOKS += HOST_AUTOMAKE_MAKE_ACLOCAL
|
|
|
|
$(eval $(call AUTOTARGETS))
|
|
$(eval $(call AUTOTARGETS,host))
|
|
|
|
# variables used by other packages
|
|
AUTOMAKE = $(HOST_DIR)/usr/bin/automake
|
|
ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal
|
|
ACLOCAL_HOST_DIR = $(HOST_DIR)/usr/share/aclocal
|
|
ACLOCAL = $(HOST_DIR)/usr/bin/aclocal -I $(ACLOCAL_DIR)
|