moved root.tar.gz to sources/openwrt/root
[openwrt.git] / obsolete-buildroot / Makefile
1 # Makefile for a simple busybox/uClibc root filesystem
2 #
3 # Copyright (C) 2001-2004 Erik Andersen <andersen@codepoet.org>
4 # Copyright (C) 2002 by Tim Riker <Tim@Rikers.org>
5 #
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.
10 #
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.
15 #
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
19 # USA
20
21
22 #############################################################
23 #
24 # EDIT this stuff to suit your system and preferences
25 #
26 # Use := when possible to get precomputation, thereby
27 # speeding up the build process.
28 #
29 #############################################################
30
31 SNAPSHOT:=20040807
32
33 ARCH:=mipsel
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
40
41 OPTIMIZE_FOR_CPU=$(ARCH)
42
43 # directory used by 'make publish'
44 PUB_DIR:=/var/www/html/testsite/ipkg
45
46 # Command used to download source code
47 WGET:=wget --passive-ftp
48
49 # Soft floating point options.
50 # Notes:
51 #   Currently builds with gcc 3.3 for arm, mips, mipsel, powerpc.
52 #   (i386 support will be added back in at some point.)
53 #   Only tested with multilib enabled.
54 #   For i386, long double is the same as double (64 bits).  While this
55 #      is unusual for x86, it seemed the best approach considering the
56 #      limitations in the gcc floating point emulation library.
57 #   For arm, soft float uses the usual libfloat routines.
58 #   Custom specs files are used to set the default gcc mode to soft float
59 #      as a convenience, since you shouldn't link hard and soft float
60 #      together.  In fact, arm won't even let you.
61 # (Un)comment the appropriate line below.
62 #SOFT_FLOAT:=true
63 SOFT_FLOAT:=false
64
65 TARGET_OPTIMIZATION=-Os -mips2
66 TARGET_DEBUGGING= #-g
67
68 # Currently the unwind stuff seems to work for staticly linked apps but
69 # not dynamic.  So use setjmp/longjmp exceptions by default.
70 # GCC_USE_SJLJ_EXCEPTIONS:=--enable-sjlj-exceptions
71 GCC_USE_SJLJ_EXCEPTIONS:=
72
73 # Any additional gcc options you may want to include....
74 EXTRA_GCC_CONFIG_OPTIONS:=
75
76 # Enable the following if you want locale/gettext/i18n support.
77 # NOTE!  Currently the pregnerated locale stuff only works for x86!
78 #ENABLE_LOCALE:=true
79 ENABLE_LOCALE:=false
80
81 # If you want multilib enabled, enable this...
82 MULTILIB:=--enable-multilib
83
84 # Build/install c++ compiler and libstdc++?
85 #INSTALL_LIBSTDCPP:=true
86 INSTALL_LIBSTDCPP:=false
87
88 # Build/install java compiler and libgcj? (requires c++)
89 # WARNING!!! DOES NOT BUILD FOR TARGET WITHOUT INTERVENTION!!!  mjn3
90 #INSTALL_LIBGCJ:=true
91 INSTALL_LIBGCJ:=false
92
93 # For SMP machines some stuff can be run in parallel
94 #JLEVEL=-j3
95
96 #############################################################
97 #
98 # The list of stuff to build for the target filesystem
99 #
100 #############################################################
101 TARGETS:=host-sed openwrt-code.bin
102
103 PACKAGES:=oidentd iproute2 sched-modules wshaper zlib openssl openssh pppoecd
104
105 #############################################################
106 #
107 # You should probably leave this stuff alone unless you know
108 # what you are doing.
109 #
110 #############################################################
111
112 ifeq ($(SOFT_FLOAT),true)
113 SOFT_FLOAT_CONFIG_OPTION:=--without-float
114 TARGET_SOFT_FLOAT:=-msoft-float
115 ARCH_FPU_SUFFIX:=_nofpu
116 else
117 SOFT_FLOAT_CONFIG_OPTION:=
118 TARGET_SOFT_FLOAT:=
119 ARCH_FPU_SUFFIX:=
120 endif
121
122 ifeq ($(INSTALL_LIBGCJ),true)
123 INSTALL_LIBSTDCPP:=true
124 endif
125
126 # WARNING -- uClibc currently disables large file support on cris.
127 ifeq ("$(strip $(ARCH))","cris")
128 BUILD_WITH_LARGEFILE:=false
129 endif
130
131 ifneq ($(BUILD_WITH_LARGEFILE),true)
132 DISABLE_LARGEFILE= --disable-largefile
133 endif
134 TARGET_CFLAGS=$(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING)
135
136 HOSTCC:=gcc
137 BASE_DIR:=${shell pwd}
138 SOURCE_DIR:=$(BASE_DIR)/sources
139 DL_DIR:=$(SOURCE_DIR)/dl
140 PATCH_DIR=$(SOURCE_DIR)/patches
141 BUILD_DIR:=$(BASE_DIR)/build_$(ARCH)$(ARCH_FPU_SUFFIX)
142 TARGET_DIR:=$(BUILD_DIR)/root
143 STAGING_DIR=$(BUILD_DIR)/staging_dir
144 TOOL_BUILD_DIR=$(BASE_DIR)/toolchain_build_$(ARCH)$(ARCH_FPU_SUFFIX)
145 TARGET_PATH=$(STAGING_DIR)/bin:/bin:/sbin:/usr/bin:/usr/sbin
146 IMAGE:=$(BASE_DIR)/root_fs_$(ARCH)$(ARCH_FPU_SUFFIX)
147 REAL_GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)-linux-uclibc
148 GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)-linux
149 KERNEL_CROSS=$(STAGING_DIR)/bin/$(OPTIMIZE_FOR_CPU)-linux-uclibc-
150 TARGET_CROSS=$(STAGING_DIR)/bin/$(OPTIMIZE_FOR_CPU)-linux-uclibc-
151 TARGET_CC=$(TARGET_CROSS)gcc
152 STRIP=$(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note
153
154
155 HOST_ARCH:=$(shell $(HOSTCC) -dumpmachine | sed -e s'/-.*//' \
156         -e 's/sparc.*/sparc/' \
157         -e 's/arm.*/arm/g' \
158         -e 's/m68k.*/m68k/' \
159         -e 's/ppc/powerpc/g' \
160         -e 's/v850.*/v850/g' \
161         -e 's/sh[234]/sh/' \
162         -e 's/mips-.*/mips/' \
163         -e 's/mipsel-.*/mipsel/' \
164         -e 's/cris.*/cris/' \
165         -e 's/i[3-9]86/i386/' \
166         )
167 GNU_HOST_NAME:=$(HOST_ARCH)-pc-linux-gnu
168 TARGET_CONFIGURE_OPTS=PATH=$(TARGET_PATH) \
169                 AR=$(TARGET_CROSS)ar \
170                 AS=$(TARGET_CROSS)as \
171                 LD=$(TARGET_CROSS)ld \
172                 NM=$(TARGET_CROSS)nm \
173                 CC=$(TARGET_CROSS)gcc \
174                 GCC=$(TARGET_CROSS)gcc \
175                 CXX=$(TARGET_CROSS)g++ \
176                 RANLIB=$(TARGET_CROSS)ranlib
177
178 ifeq ($(ENABLE_LOCALE),true)
179 DISABLE_NLS:=
180 else
181 DISABLE_NLS:=--disable-nls
182 endif
183
184 all:   world
185
186 TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
187 TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS))
188 TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
189
190
191 PACKAGES_IPK:=$(patsubst %,%-ipk,$(PACKAGES))
192 OPENWRT_IPK_DIR=$(SOURCE_DIR)/openwrt/ipkg
193
194 $(BUILD_DIR)/Packages : $(PACKAGES_IPK)
195         (cd $(BUILD_DIR) ; $(IPKG_MAKE_INDEX) . > Packages)
196
197 world: $(DL_DIR) $(TARGETS_SOURCE) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) $(TARGETS)
198         @echo "ALL DONE."
199
200 packages: ipkg-utils $(PACKAGES_IPK) $(BUILD_DIR)/Packages
201         @echo "ALL DONE."
202
203 .PHONY: all world clean dirclean distclean source $(TARGETS) \
204         $(TARGETS_CLEAN) $(TARGETS_DIRCLEAN) $(TARGETS_SOURCE)
205
206 include make/*.mk
207
208 #############################################################
209 #
210 # staging and target directories do NOT list these as
211 # dependancies anywhere else
212 #
213 #############################################################
214 $(DL_DIR):
215         mkdir $(DL_DIR)
216
217 $(BUILD_DIR):
218         mkdir $(BUILD_DIR)
219
220 $(STAGING_DIR):
221         rm -rf $(STAGING_DIR)
222         mkdir -p $(STAGING_DIR)/lib
223         mkdir -p $(STAGING_DIR)/usr
224         ln -fs $(REAL_GNU_TARGET_NAME)/include $(STAGING_DIR)/include
225         ln -fs ../lib $(STAGING_DIR)/usr/lib
226         ln -fs ../$(REAL_GNU_TARGET_NAME)/include $(STAGING_DIR)/usr/include
227
228
229 $(TARGET_DIR):
230         rm -rf $(TARGET_DIR)
231         cp -a $(SOURCE_DIR)/openwrt/root/ $(TARGET_DIR)
232         -find $(TARGET_DIR) -type d -name CVS -exec rm -rf {} \; > /dev/null 2>&1
233
234 source: $(TARGETS_SOURCE)
235
236 #############################################################
237 #
238 # Cleanup and misc junk
239 #
240 #############################################################
241 clean:
242         rm -rf $(TOOL_BUILD_DIR) $(BUILD_DIR) $(IMAGE) \
243                 openwrt-linux.trx openwrt-g-code.bin openwrt-gs-code.bin \
244                 openwrt-kmodules.tar.bz2
245
246 dirclean: $(TARGETS_DIRCLEAN)
247         rm -rf $(TARGET_DIR) $(STAGING_DIR) $(IMAGE) \
248                 openwrt-linux.trx openwrt-g-code.bin openwrt-gs-code.bin \
249                 openwrt-kmodules.tar.bz2
250
251 distclean:
252         rm -rf $(DL_DIR) $(BUILD_DIR) $(LINUX_KERNEL) $(IMAGE) \
253                 openwrt-linux.trx openwrt-g-code.bin openwrt-gs-code.bin \
254                 openwrt-kmodules.tar.bz2
255
256 publish:        
257         chmod 644 $(BUILD_DIR)/Packages
258         chmod 644 $(BUILD_DIR)/Packages.filelist
259         chmod 644 $(BUILD_DIR)/*.ipk
260         cp $(BUILD_DIR)/Packages $(PUB_DIR)
261         cp $(BUILD_DIR)/Packages.filelist $(PUB_DIR)
262         cp $(BUILD_DIR)/*.ipk $(PUB_DIR)
263
264 sourceball: 
265         rm -rf $(BUILD_DIR)
266         set -e; \
267         cd ..; \
268         rm -f buildroot.tar.bz2; \
269         tar -cvf buildroot.tar buildroot; \
270         bzip2 -9 buildroot.tar; \