diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-08-07 00:04:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-08-07 00:04:25 +0000 |
commit | d10a56dc58f6c601a9abaddbe1e9cfe4db97d57b (patch) | |
tree | 9cda5ecf22a01d8a2ac22cd1a6510d51dfd5f3c3 /tools/patch-cmdline/Makefile | |
parent | a46bd6cee4e494a5879393349c2a6990996c5904 (diff) | |
download | upstream-d10a56dc58f6c601a9abaddbe1e9cfe4db97d57b.tar.gz upstream-d10a56dc58f6c601a9abaddbe1e9cfe4db97d57b.tar.bz2 upstream-d10a56dc58f6c601a9abaddbe1e9cfe4db97d57b.zip |
build system cleanup/restructuring as described in http://lists.openwrt.org/pipermail/openwrt-devel/2007-August/001159.html
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8362 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/patch-cmdline/Makefile')
-rw-r--r-- | tools/patch-cmdline/Makefile | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/tools/patch-cmdline/Makefile b/tools/patch-cmdline/Makefile index 75ea7b52d4..cc6b9d3819 100644 --- a/tools/patch-cmdline/Makefile +++ b/tools/patch-cmdline/Makefile @@ -8,27 +8,18 @@ include $(TOPDIR)/rules.mk PKG_NAME:=patch-cmdline -PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME) - include $(INCLUDE_DIR)/host-build.mk -OS:=$(shell uname) -ifeq ($(HOST_OS),Darwin) - CFLAGS += -I./include -endif -CFLAGS += -I $(TOPDIR)/tools/include -include endian.h - define Build/Compile - $(CC) $(CFLAGS) -o $(PKG_BUILD_DIR)/$(PKG_NAME) src/$(PKG_NAME).c + $(HOSTCC) $(HOST_CFLAGS) -include endian.h -o $(PKG_BUILD_DIR)/$(PKG_NAME) src/$(PKG_NAME).c endef define Build/Install - mkdir -p $(STAGING_DIR)/bin - $(CP) $(PKG_BUILD_DIR)/patch-cmdline $(STAGING_DIR)/bin/ + $(CP) $(PKG_BUILD_DIR)/patch-cmdline $(STAGING_DIR_HOST)/bin/ endef define Build/Clean - -rm -f $(STAGING_DIR)/bin/patch-cmdline + rm -f $(STAGING_DIR_HOST)/bin/patch-cmdline endef $(eval $(call HostBuild)) |