Changeset 113
- Timestamp:
- 06/18/06 21:35:32 (6 years ago)
- Files:
-
- trunk/freewrt/toolchain/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/toolchain/Makefile
r99 r113 1 1 # Main makefile for the toolchain 2 2 include $(TOPDIR)/rules.mk 3 TARGETS:=sed binutils gcc uClibc ipkg-utils gdb libnotimpl utils lzma 3 4 ifeq ($(shell [[ "$(OStype)" = *BSD ]] && echo 1),) 5 BUILD_SED:=sed 6 BUILD_SED_DEP:=sed-install 7 else 8 BUILD_SED:= 9 BUILD_SED_DEP:= 10 endif 11 12 TARGETS:=$(BUILD_SED) binutils gcc uClibc ipkg-utils gdb libnotimpl utils lzma 4 13 5 14 TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS)) … … 10 19 clean: $(TARGETS_CLEAN) 11 20 12 uClibc-prepare: kernel-headers-prepare sed-install21 uClibc-prepare: kernel-headers-prepare $(BUILD_SED_DEP) 13 22 binutils-prepare: uClibc-prepare 14 23 gcc-prepare: binutils-install


