summaryrefslogtreecommitdiff
path: root/tools/automake
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-02-22 04:37:20 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-02-22 04:37:20 +0000
commit7eb15898755be46e94078faffdacd8c9b0ce66cd (patch)
tree89dc171f7b7c646be5a38ca7d7b99e1be24fa61f /tools/automake
parent6ccc1c8e3c9ad0ac95c728573c300264943d8338 (diff)
downloadmtk-20170518-7eb15898755be46e94078faffdacd8c9b0ce66cd.zip
mtk-20170518-7eb15898755be46e94078faffdacd8c9b0ce66cd.tar.gz
mtk-20170518-7eb15898755be46e94078faffdacd8c9b0ce66cd.tar.bz2
build system refactoring in preparation for allowing packages to do host-build steps
SVN-Revision: 14610
Diffstat (limited to 'tools/automake')
-rw-r--r--tools/automake/Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/automake/Makefile b/tools/automake/Makefile
index 2b8a6f3..679a954 100644
--- a/tools/automake/Makefile
+++ b/tools/automake/Makefile
@@ -15,27 +15,27 @@ PKG_MD5SUM:=c11b8100bb311492d8220378fd8bf9e0
include $(INCLUDE_DIR)/host-build.mk
-define Build/Configure
- $(call Build/Configure/Default,\
+define Host/Configure
+ $(call Host/Configure/Default,\
--datarootdir=$(STAGING_DIR_HOST)/share \
)
endef
-define Build/Compile
- $(MAKE) -C $(PKG_BUILD_DIR)
+define Host/Compile
+ $(MAKE) -C $(HOST_BUILD_DIR)
endef
-define Build/Install
- $(MAKE) -C $(PKG_BUILD_DIR) install
+define Host/Install
+ $(MAKE) -C $(HOST_BUILD_DIR) install
mv $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal.real
$(INSTALL_BIN) ./files/aclocal $(STAGING_DIR_HOST)/bin
ln -f $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.9
endef
-define Build/Clean
- $(MAKE) -C $(PKG_BUILD_DIR) uninstall
- $(MAKE) -C $(PKG_BUILD_DIR) clean
- $(call Build/Clean/Default)
+define Host/Clean
+ $(MAKE) -C $(HOST_BUILD_DIR) uninstall
+ $(MAKE) -C $(HOST_BUILD_DIR) clean
+ $(call Host/Clean/Default)
endef
$(eval $(call HostBuild))