diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-06 15:40:38 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-06 15:40:38 +0000 |
commit | 5455b5e03fb89ecf70b55ecd2dc688fc2c57be35 (patch) | |
tree | bd3c7cbaa65a72c29cc2686f62fa08ab5dab0fa5 /Makefile | |
parent | 9518cdc661ff5908cea97d4f17720bb69778cfd8 (diff) | |
download | buildroot-novena-5455b5e03fb89ecf70b55ecd2dc688fc2c57be35.tar.gz buildroot-novena-5455b5e03fb89ecf70b55ecd2dc688fc2c57be35.zip |
Shuffle so binutils is unpacked/built first
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -58,16 +58,16 @@ WGET:=wget --passive-ftp # The list of stuff to build for the target filesystem # ############################################################# -# Do you want user mode Linux (x86 only), or are you building a -# real kernel that will run on its own? -#TARGETS+=linux -TARGETS+=user-mode-linux - # The toolchain comes next if we are building one ifeq ($(USE_UCLIBC_TOOLCHAIN),true) TARGETS+=uclibc_toolchain endif +# Do you want user mode Linux (x86 only), or are you building a +# real kernel that will run on its own? +#TARGETS+=linux +TARGETS+=user-mode-linux + # The default minimal set TARGETS+=busybox tinylogin |