1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

build system refactoring in preparation for allowing packages to do host-build steps

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14610 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2009-02-22 04:37:20 +00:00
parent 9dd6200927
commit 800e84cc0f
33 changed files with 493 additions and 460 deletions

View File

@@ -10,15 +10,15 @@ PKG_NAME:=patch-cmdline
include $(INCLUDE_DIR)/host-build.mk
define Build/Compile
$(HOSTCC) $(HOST_CFLAGS) -include endian.h -o $(PKG_BUILD_DIR)/$(PKG_NAME) src/$(PKG_NAME).c
define Host/Compile
$(HOSTCC) $(HOST_CFLAGS) -include endian.h -o $(HOST_BUILD_DIR)/$(PKG_NAME) src/$(PKG_NAME).c
endef
define Build/Install
$(CP) $(PKG_BUILD_DIR)/patch-cmdline $(STAGING_DIR_HOST)/bin/
define Host/Install
$(CP) $(HOST_BUILD_DIR)/patch-cmdline $(STAGING_DIR_HOST)/bin/
endef
define Build/Clean
define Host/Clean
rm -f $(STAGING_DIR_HOST)/bin/patch-cmdline
endef