Changeset 131a9d7 in freewrt
- Timestamp:
- Jul 12, 2006, 10:09:11 PM (19 years ago)
- Branches:
- freewrt_1_0, freewrt_2_0
- Children:
- 2f1a2c9
- Parents:
- 37bb2e3
- Files:
-
- 1 added
- 3 edited
- 15 moved
-
build.mk (modified) (5 diffs)
-
rules.mk (modified) (1 diff)
-
toolchain/Makefile (modified) (2 diffs)
-
tools/Makefile (added)
-
tools/brcm-utils/Makefile (moved) (moved from toolchain/utils/Makefile )
-
tools/brcm-utils/src/addpattern.c (moved) (moved from toolchain/utils/src/addpattern.c )
-
tools/brcm-utils/src/dgfirmware.c (moved) (moved from toolchain/utils/src/dgfirmware.c )
-
tools/brcm-utils/src/motorola-bin.c (moved) (moved from toolchain/utils/src/motorola-bin.c )
-
tools/brcm-utils/src/trx.c (moved) (moved from toolchain/utils/src/trx.c )
-
tools/ipkg-utils/Makefile (moved) (moved from toolchain/ipkg-utils/Makefile )
-
tools/ipkg-utils/patches/001-remove-unportable-uid-check.patch (moved) (moved from toolchain/ipkg-utils/patches/001-remove-unportable-uid-check.patch )
-
tools/ipkg-utils/patches/020-fix_python_path.patch (moved) (moved from toolchain/ipkg-utils/patches/020-fix_python_path.patch )
-
tools/ipkg-utils/patches/ipkg-utils-1.7-ipkg_build_clean.patch (moved) (moved from toolchain/ipkg-utils/patches/ipkg-utils-1.7-ipkg_build_clean.patch )
-
tools/ipkg-utils/patches/ipkg-utils-1.7-ipkg_build_tar.patch (moved) (moved from toolchain/ipkg-utils/patches/ipkg-utils-1.7-ipkg_build_tar.patch )
-
tools/ipkg-utils/patches/ipkg-utils-1.7-ipkg_buildpackage.patch (moved) (moved from toolchain/ipkg-utils/patches/ipkg-utils-1.7-ipkg_buildpackage.patch )
-
tools/lzma/Makefile (moved) (moved from toolchain/lzma/Makefile )
-
tools/lzma/lzma-zlib.patch (moved) (moved from toolchain/lzma/lzma-zlib.patch )
-
tools/sed/Makefile (moved) (moved from toolchain/sed/Makefile )
-
tools/sed/sedcheck.sh (moved) (moved from toolchain/sed/sedcheck.sh )
Legend:
- Unmodified
- Added
- Removed
-
build.mk
r37bb2e3 r131a9d7 31 31 32 32 world: $(DL_DIR) $(BUILD_DIR) $(STAMP_DIR) 33 $(MAKE) -f build.mk tool chain/install target/compile package/compile root_clean package/install target/install package_index33 $(MAKE) -f build.mk tools/install toolchain/install target/compile package/compile root_clean package/install target/install package_index 34 34 @$(TRACE) Build complete. 35 35 … … 46 46 @mkdir -p $(STAMP_DIR) 47 47 48 source: tool chain/source package/source target/source48 source: tools/source toolchain/source package/source target/source 49 49 50 50 package/%: … … 59 59 @$(TRACE) $@ 60 60 $(MAKE) -C toolchain $(patsubst toolchain/%,%,$@) 61 62 tools/%: 63 @$(TRACE) $@ 64 $(MAKE) -C tools $(patsubst tools/%,%,$@) 61 65 62 66 ############################################################# … … 83 87 @$(MAKE) -C $(CONFIG) clean 84 88 rm -rf $(BUILD_DIR) $(BIN_DIR) 85 rm -rf $(STAMP_DIR) $(TOOLCHAIN_BUILD_DIR) $(STAGING_DIR) 89 rm -rf $(TOOLS_BUILD_DIR) $(TOOLCHAIN_BUILD_DIR) $(STAGING_DIR) 90 rm -rf $(STAMP_DIR) $(TOOLS_STAMP_DIR) $(TOOLCHAIN_STAMP_DIR) 86 91 rm -f .tmpconfig.h 87 92 … … 90 95 @$(MAKE) -C $(CONFIG) clean 91 96 rm -rf $(BUILD_DIR) $(BIN_DIR) $(DL_DIR) 92 rm -rf $(STAMP_DIR) $(TOOLCHAIN_BUILD_DIR) $(STAGING_DIR) 97 rm -rf $(TOOLS_BUILD_DIR) $(TOOLCHAIN_BUILD_DIR) $(STAGING_DIR) 98 rm -rf $(STAMP_DIR) $(TOOLS_STAMP_DIR) $(TOOLCHAIN_STAMP_DIR) 93 99 rm -f .config* .tmpconfig.h 94 100 -
rules.mk
r37bb2e3 r131a9d7 74 74 TOOLCHAIN_BUILD_DIR=$(BASE_DIR)/toolchain_build_$(ARCH)$(ARCH_FPU_SUFFIX) 75 75 TOOLCHAIN_STAMP_DIR:=$(STAGING_DIR)/stamp 76 TOOLS_BUILD_DIR=$(BASE_DIR)/tools_build 77 TOOLS_STAMP_DIR:=$(STAGING_DIR)/stamp 76 78 SCRIPT_DIR:=$(BASE_DIR)/scripts 77 79 BIN_DIR:=$(BASE_DIR)/bin -
toolchain/Makefile
r37bb2e3 r131a9d7 3 3 include $(TOPDIR)/rules.mk 4 4 5 BUILD_SED:=sed 6 BUILD_SED_DEP:=sed-install 7 8 TARGETS:=$(BUILD_SED) binutils gcc uClibc ipkg-utils gdb libnotimpl utils lzma 5 TARGETS:=binutils gcc uClibc gdb libnotimpl 9 6 10 7 TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS)) … … 15 12 clean: $(TARGETS_CLEAN) 16 13 17 uClibc-prepare: kernel-headers-prepare $(BUILD_SED_DEP)14 uClibc-prepare: kernel-headers-prepare 18 15 binutils-prepare: uClibc-prepare 19 16 gcc-prepare: binutils-install
Note:
See TracChangeset
for help on using the changeset viewer.
