1 # Makefile for a simple busybox/uClibc root filesystem
3 # Copyright (C) 2001-2004 Erik Andersen <andersen@codepoet.org>
4 # Copyright (C) 2002 by Tim Riker <Tim@Rikers.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU Library General Public License as
8 # published by the Free Software Foundation; either version 2 of the
9 # License, or (at your option) any later version.
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Library General Public License for more details.
16 # You should have received a copy of the GNU Library General Public
17 # License along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 #############################################################
24 # EDIT this stuff to suit your system and preferences
26 # Use := when possible to get precomputation, thereby
27 # speeding up the build process.
29 #############################################################
34 USE_UCLIBC_SNAPSHOT
:=$(SNAPSHOT
)
35 USE_UCLIBC_LDSO_0_9_24
:=false
36 USE_BUSYBOX_SNAPSHOT
:=$(SNAPSHOT
)
37 USE_NETFILTER_SNAPSHOT
:=$(SNAPSHOT
)
38 USE_BRIDGE_VERSION
:=0.9.7
39 BUILD_WITH_LARGEFILE
:=true
41 OPTIMIZE_FOR_CPU
=$(ARCH
)
43 # Command used to download source code
44 WGET
:=wget
--passive-ftp
46 # Soft floating point options.
48 # Currently builds with gcc 3.3 for arm, mips, mipsel, powerpc.
49 # (i386 support will be added back in at some point.)
50 # Only tested with multilib enabled.
51 # For i386, long double is the same as double (64 bits). While this
52 # is unusual for x86, it seemed the best approach considering the
53 # limitations in the gcc floating point emulation library.
54 # For arm, soft float uses the usual libfloat routines.
55 # Custom specs files are used to set the default gcc mode to soft float
56 # as a convenience, since you shouldn't link hard and soft float
57 # together. In fact, arm won't even let you.
58 # (Un)comment the appropriate line below.
62 TARGET_OPTIMIZATION
=-Os
-mips2
65 # Currently the unwind stuff seems to work for staticly linked apps but
66 # not dynamic. So use setjmp/longjmp exceptions by default.
67 # GCC_USE_SJLJ_EXCEPTIONS:=--enable-sjlj-exceptions
68 GCC_USE_SJLJ_EXCEPTIONS
:=
70 # Any additional gcc options you may want to include....
71 EXTRA_GCC_CONFIG_OPTIONS
:=
73 # Enable the following if you want locale/gettext/i18n support.
74 # NOTE! Currently the pregnerated locale stuff only works for x86!
78 # If you want multilib enabled, enable this...
79 MULTILIB
:=--enable-multilib
81 # Build/install c++ compiler and libstdc++?
82 #INSTALL_LIBSTDCPP:=true
83 INSTALL_LIBSTDCPP
:=false
85 # Build/install java compiler and libgcj? (requires c++)
86 # WARNING!!! DOES NOT BUILD FOR TARGET WITHOUT INTERVENTION!!! mjn3
90 # For SMP machines some stuff can be run in parallel
93 #############################################################
95 # The list of stuff to build for the target filesystem
97 #############################################################
98 TARGETS
:=gcc3_3 openwrt-base openwrt-code.bin
100 #############################################################
102 # You should probably leave this stuff alone unless you know
103 # what you are doing.
105 #############################################################
107 ifeq ($(SOFT_FLOAT
),true
)
108 SOFT_FLOAT_CONFIG_OPTION
:=--without-float
109 TARGET_SOFT_FLOAT
:=-msoft-float
110 ARCH_FPU_SUFFIX
:=_nofpu
112 SOFT_FLOAT_CONFIG_OPTION
:=
117 ifeq ($(INSTALL_LIBGCJ
),true
)
118 INSTALL_LIBSTDCPP
:=true
121 # WARNING -- uClibc currently disables large file support on cris.
122 ifeq ("$(strip $(ARCH))","cris")
123 BUILD_WITH_LARGEFILE
:=false
126 ifneq ($(BUILD_WITH_LARGEFILE
),true
)
127 DISABLE_LARGEFILE
= --disable-largefile
129 TARGET_CFLAGS
=$(TARGET_OPTIMIZATION
) $(TARGET_DEBUGGING
)
132 BASE_DIR
:=${shell pwd
}
133 SOURCE_DIR
:=$(BASE_DIR
)/sources
134 DL_DIR
:=$(SOURCE_DIR
)/dl
135 PATCH_DIR
=$(SOURCE_DIR
)/patches
136 BUILD_DIR
:=$(BASE_DIR
)/build_
$(ARCH
)$(ARCH_FPU_SUFFIX
)
137 TARGET_DIR
:=$(BUILD_DIR
)/root
138 STAGING_DIR
=$(BUILD_DIR
)/staging_dir
139 TOOL_BUILD_DIR
=$(BASE_DIR
)/toolchain_build_
$(ARCH
)$(ARCH_FPU_SUFFIX
)
140 TARGET_PATH
=$(STAGING_DIR
)/bin
:/bin
:/sbin
:/usr
/bin
:/usr
/sbin
141 IMAGE
:=$(BASE_DIR
)/root_fs_
$(ARCH
)$(ARCH_FPU_SUFFIX
)
142 REAL_GNU_TARGET_NAME
=$(OPTIMIZE_FOR_CPU
)-linux-uclibc
143 GNU_TARGET_NAME
=$(OPTIMIZE_FOR_CPU
)-linux
144 KERNEL_CROSS
=$(STAGING_DIR
)/bin
/$(OPTIMIZE_FOR_CPU
)-linux-uclibc-
145 TARGET_CROSS
=$(STAGING_DIR
)/bin
/$(OPTIMIZE_FOR_CPU
)-linux-uclibc-
146 TARGET_CC
=$(TARGET_CROSS
)gcc
147 STRIP
=$(TARGET_CROSS
)strip --remove-section
=.comment
--remove-section
=.note
150 HOST_ARCH
:=$(shell $(HOSTCC
) -dumpmachine | sed
-e s
'/-.*//' \
151 -e
's/sparc.*/sparc/' \
153 -e
's/m68k.*/m68k/' \
154 -e
's/ppc/powerpc/g' \
155 -e
's/v850.*/v850/g' \
157 -e
's/mips-.*/mips/' \
158 -e
's/mipsel-.*/mipsel/' \
159 -e
's/cris.*/cris/' \
160 -e
's/i[3-9]86/i386/' \
162 GNU_HOST_NAME
:=$(HOST_ARCH
)-pc-linux-gnu
163 TARGET_CONFIGURE_OPTS
=PATH
=$(TARGET_PATH
) \
164 AR
=$(TARGET_CROSS
)ar \
165 AS
=$(TARGET_CROSS
)as \
166 LD
=$(TARGET_CROSS
)ld \
167 NM
=$(TARGET_CROSS
)nm \
168 CC
=$(TARGET_CROSS
)gcc \
169 GCC
=$(TARGET_CROSS
)gcc \
170 CXX
=$(TARGET_CROSS
)g
++ \
171 RANLIB
=$(TARGET_CROSS
)ranlib
173 ifeq ($(ENABLE_LOCALE
),true
)
176 DISABLE_NLS
:=--disable-nls
182 TARGETS_CLEAN
:=$(patsubst %,%-clean,$(TARGETS
))
183 TARGETS_SOURCE
:=$(patsubst %,%-source
,$(TARGETS
))
184 TARGETS_DIRCLEAN
:=$(patsubst %,%-dirclean
,$(TARGETS
))
186 world
: $(DL_DIR
) $(BUILD_DIR
) $(STAGING_DIR
) $(TARGET_DIR
) $(TARGETS
)
189 .PHONY
: all world
clean dirclean
distclean source
$(TARGETS
) \
190 $(TARGETS_CLEAN
) $(TARGETS_DIRCLEAN
) $(TARGETS_SOURCE
)
194 #############################################################
196 # staging and target directories do NOT list these as
197 # dependancies anywhere else
199 #############################################################
207 rm -rf
$(STAGING_DIR
)
208 mkdir
-p
$(STAGING_DIR
)/lib
209 mkdir
-p
$(STAGING_DIR
)/usr
210 ln
-fs
$(REAL_GNU_TARGET_NAME
)/include $(STAGING_DIR
)/include
211 ln
-fs ..
/lib
$(STAGING_DIR
)/usr
/lib
212 ln
-fs ..
/$(REAL_GNU_TARGET_NAME
)/include $(STAGING_DIR
)/usr
/include
215 $(TARGET_DIR
): $(DL_DIR
)/$(OPENWRT_ROOT_SKEL
)
217 #zcat $(SOURCE_DIR)/skel.tar.gz | tar -C $(BUILD_DIR) -xf -
218 zcat
$(DL_DIR
)/$(OPENWRT_ROOT_SKEL
) |
tar -C
$(BUILD_DIR
) -xf
-
219 #cp -a $(SOURCE_DIR)/target_skeleton/* $(TARGET_DIR)/
220 -find
$(TARGET_DIR
) -type d
-name CVS
-exec
rm -rf
{} \
; > /dev
/null
2>&1
222 source
: $(TARGETS_SOURCE
)
224 #############################################################
226 # Cleanup and misc junk
228 #############################################################
230 rm -rf
$(TOOL_BUILD_DIR
) $(BUILD_DIR
) $(IMAGE
) \
231 openwrt-linux.trx openwrt-g-code.bin openwrt-gs-code.bin \
232 openwrt-kmodules.
tar.bz2
234 dirclean
: $(TARGETS_DIRCLEAN
)
235 rm -rf
$(TARGET_DIR
) $(STAGING_DIR
) $(IMAGE
) \
236 openwrt-linux.trx openwrt-g-code.bin openwrt-gs-code.bin \
237 openwrt-kmodules.
tar.bz2
240 rm -rf
$(DL_DIR
) $(BUILD_DIR
) $(LINUX_KERNEL
) $(IMAGE
) \
241 openwrt-linux.trx openwrt-g-code.bin openwrt-gs-code.bin \
242 openwrt-kmodules.
tar.bz2
248 rm -f buildroot.
tar.bz2
; \
249 tar -cvf buildroot.
tar buildroot
; \
250 bzip2
-9 buildroot.
tar; \