diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-04-06 09:56:06 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-04-06 09:56:06 +0000 |
commit | 9dd8b818459c5118b5acc3e17e70e1fae293fddd (patch) | |
tree | 62771b81f75c0cde526b81e15866a32b30ef8de9 /include | |
parent | 7890792f4967f636a74f6033f30b12273057e47a (diff) | |
download | upstream-9dd8b818459c5118b5acc3e17e70e1fae293fddd.tar.gz upstream-9dd8b818459c5118b5acc3e17e70e1fae293fddd.tar.bz2 upstream-9dd8b818459c5118b5acc3e17e70e1fae293fddd.zip |
add a default template for Host/Install
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15110 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/host-build.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/host-build.mk b/include/host-build.mk index 39de66bb9f..ffba12b51d 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -78,6 +78,15 @@ define Host/Compile $(call Host/Compile/Default) endef +define Host/Install/Default + $(MAKE) -C $(HOST_BUILD_DIR) install +endef + +define Host/Install + $(call Host/Install/Default) +endef + + ifneq ($(if $(HOST_QUILT),,$(CONFIG_AUTOREBUILD)),) define HostHost/Autoclean $(call rdep,${CURDIR} $(PKG_FILE_DEPEND),$(HOST_STAMP_PREPARED)) |