diff options
author | Mike Baker <mbm@openwrt.org> | 2006-04-21 10:03:46 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2006-04-21 10:03:46 +0000 |
commit | 170f0e635c21e459495016d7acb5da00c9634363 (patch) | |
tree | e750e5fdedf74fc38abc909dea2499027774a705 /openwrt/package | |
parent | ac2bee9082803a381cda32c87f1d7151f67fa6d5 (diff) | |
download | mtk-20170518-170f0e635c21e459495016d7acb5da00c9634363.zip mtk-20170518-170f0e635c21e459495016d7acb5da00c9634363.tar.gz mtk-20170518-170f0e635c21e459495016d7acb5da00c9634363.tar.bz2 |
Add default compile target & use it for bridge and busybox
SVN-Revision: 3693
Diffstat (limited to 'openwrt/package')
-rw-r--r-- | openwrt/package/bridge/Makefile | 4 | ||||
-rw-r--r-- | openwrt/package/busybox/Makefile | 9 | ||||
-rw-r--r-- | openwrt/package/rules.mk | 8 |
3 files changed, 7 insertions, 14 deletions
diff --git a/openwrt/package/bridge/Makefile b/openwrt/package/bridge/Makefile index 18ea1dd..bd71165 100644 --- a/openwrt/package/bridge/Makefile +++ b/openwrt/package/bridge/Makefile @@ -29,10 +29,6 @@ define Build/Configure $(call Build/Configure/Default,--with-linux-headers=$(LINUX_DIR)) endef -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) -endef - define Package/busybox/install mkdir -p $(IDIR_BRIDGE)/usr/sbin $(CP) $(PKG_BUILD_DIR)/brctl/brctl $(IDIR_BRIDGE)/usr/sbin/ diff --git a/openwrt/package/busybox/Makefile b/openwrt/package/busybox/Makefile index 812e12a..3f061b8 100644 --- a/openwrt/package/busybox/Makefile +++ b/openwrt/package/busybox/Makefile @@ -30,15 +30,6 @@ define Build/Configure yes '' | $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" -C $(PKG_BUILD_DIR) oldconfig endef -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - CC=$(TARGET_CC) \ - CROSS="$(TARGET_CROSS)" \ - PREFIX="$(IDIR_BUSYBOX)" \ - EXTRA_CFLAGS="$(TARGET_CFLAGS)" \ - ARCH="$(ARCH)" -endef - define Package/busybox/install $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" PREFIX="$(1)" \ EXTRA_CFLAGS="$(TARGET_CFLAGS)" -C $(PKG_BUILD_DIR) install diff --git a/openwrt/package/rules.mk b/openwrt/package/rules.mk index 916bb0f..17f6c61 100644 --- a/openwrt/package/rules.mk +++ b/openwrt/package/rules.mk @@ -213,7 +213,13 @@ define Build/Configure endef define Build/Compile/Default -# TODO: add configurable default command + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC=$(TARGET_CC) \ + CROSS="$(TARGET_CROSS)" \ + PREFIX="$$(IDIR_$(1))" \ + EXTRA_CFLAGS="$(TARGET_CFLAGS)" \ + ARCH="$(ARCH)" \ + DESTDIR="$$(IDIR_$(1))" endef define Build/Compile |