diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-02-22 04:37:20 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-02-22 04:37:20 +0000 |
commit | 7eb15898755be46e94078faffdacd8c9b0ce66cd (patch) | |
tree | 89dc171f7b7c646be5a38ca7d7b99e1be24fa61f /tools/bison | |
parent | 6ccc1c8e3c9ad0ac95c728573c300264943d8338 (diff) | |
download | upstream-7eb15898755be46e94078faffdacd8c9b0ce66cd.tar.gz upstream-7eb15898755be46e94078faffdacd8c9b0ce66cd.tar.bz2 upstream-7eb15898755be46e94078faffdacd8c9b0ce66cd.zip |
build system refactoring in preparation for allowing packages to do host-build steps
SVN-Revision: 14610
Diffstat (limited to 'tools/bison')
-rw-r--r-- | tools/bison/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/bison/Makefile b/tools/bison/Makefile index 2b85612059..58a5603ef4 100644 --- a/tools/bison/Makefile +++ b/tools/bison/Makefile @@ -16,18 +16,18 @@ PKG_CAT:=zcat include $(INCLUDE_DIR)/host-build.mk -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 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)) |