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 | b892e1fb855de59ce8e81881526ede35df1ae3fd (patch) | |
tree | 8497134d453d336d68b5dbf67d9b6b719ed2145e /tools/patch-cmdline | |
parent | 67c9c212e61d7ce11aa22e3ac5f7a109c134c0d1 (diff) | |
download | upstream-b892e1fb855de59ce8e81881526ede35df1ae3fd.tar.gz upstream-b892e1fb855de59ce8e81881526ede35df1ae3fd.tar.bz2 upstream-b892e1fb855de59ce8e81881526ede35df1ae3fd.zip |
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
Diffstat (limited to 'tools/patch-cmdline')
-rw-r--r-- | tools/patch-cmdline/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/patch-cmdline/Makefile b/tools/patch-cmdline/Makefile index cc6b9d3819..9a3f971ef7 100644 --- a/tools/patch-cmdline/Makefile +++ b/tools/patch-cmdline/Makefile @@ -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 |