5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Library General Public
7 # License as published by the Free Software Foundation; either
8 # version 2 of the License, or (at your option) any later
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU Library General Public License for more details.
16 # You should have received a copy of the GNU Library General
17 # Public License along with this program; if not, write to the
18 # Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 # Boston, MA 02111-1307 USA
22 #--------------------------------------------------------------
23 # You shouldn't need to mess with anything beyond this point...
24 #--------------------------------------------------------------
25 noconfig_targets := menuconfig config oldconfig randconfig \
26 defconfig allyesconfig allnoconfig clean distclean \
32 ifeq ($(HAVE_SHARED),y)
35 # need to have libc built, before we can build the others
36 PRE_DIRS = $(RTLD_DIR) libc
37 DIRS = $(RTLD_DIR) libcrypt libresolv libnsl libutil librt
38 ifeq ($(UCLIBC_HAS_FLOATS),y)
41 ifeq ($(UCLIBC_HAS_THREADS),y)
44 ifeq ($(UCLIBC_HAS_GETTEXT_AWARENESS),y)
48 ifeq ($(HAVE_DOT_CONFIG),y)
52 # In this section, we need .config
57 $(SECHO) Finally finished compiling ...
60 include/bits/uClibc_config.h: .config
61 @if [ ! -x ./extra/config/conf ] ; then \
62 $(MAKE) -C extra/config conf; \
65 $(INSTALL) -d include/bits
66 @./extra/config/conf -o extra/Configs/Config.in
68 # For the moment, we have to keep re-running this target
69 # because the fix includes scripts rely on pre-processers
70 # in order to generate the headers correctly :(. That
71 # means we can't use the $(HOSTCC) in order to get the
73 ifeq ($(ARCH_HAS_MMU),y)
74 export header_extra_args =
76 export header_extra_args = -n
78 headers: include/bits/uClibc_config.h
80 ./extra/scripts/fix_includes.sh \
81 -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) \
85 for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
88 if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
89 for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
95 for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
98 if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
99 for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
106 TOPDIR=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
107 if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
108 $(RM) include/bits/sysnum.h.new; \
110 mv -f include/bits/sysnum.h.new include/bits/sysnum.h; \
112 ifeq ($(UCLIBC_HAS_THREADS),y)
113 $(MAKE) -C libpthread headers
115 $(MAKE) -C libc/sysdeps/linux/common headers
116 $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
118 # Command used to download source code
119 WGET:=wget --passive-ftp
121 LOCALE_DATA_FILENAME:=uClibc-locale-030818.tgz
124 ifeq ($(UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA),y)
126 if [ ! -f $(LOCALE_DATA_FILENAME) ] ; then \
127 $(WGET) http://www.uclibc.org/downloads/$(LOCALE_DATA_FILENAME) ; \
130 ifeq ($(UCLIBC_PREGENERATED_LOCALE_DATA),y)
131 (cd extra/locale; zcat $(LOCALE_DATA_FILENAME) | tar -xvf -)
132 $(MAKE) -C extra/locale pregen
135 pre_subdirs: $(patsubst %, _pre_dir_%, $(PRE_DIRS))
136 $(patsubst %, _pre_dir_%, $(PRE_DIRS)): pregen
137 $(MAKE) -C $(patsubst _pre_dir_%, %, $@)
139 subdirs: $(patsubst %, _dir_%, $(DIRS))
140 $(patsubst %, _dir_%, $(DIRS)): pre_subdirs
141 $(MAKE) -C $(patsubst _dir_%, %, $@)
146 install: install_runtime install_dev finished2
149 RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB=$(shell extra/scripts/relative_path.sh $(DEVEL_PREFIX)lib $(RUNTIME_PREFIX)lib)
151 # Installs header files.
153 $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
154 if [ "$(KERNEL_SOURCE)" == "$(DEVEL_PREFIX)" ] ; then \
155 extra_exclude="--exclude include/linux --exclude include/asm'*'" ; \
159 tar -chf - include --exclude .svn $$extra_exclude \
160 | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX)
161 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ssp-internal.h
162 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/dl-osinfo.h
163 ifneq ($(UCLIBC_HAS_FLOATS),y)
164 # Remove floating point related headers since float support is disabled.
165 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/complex.h
166 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/fpu_control.h
167 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ieee754.h
168 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/math.h
169 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/tgmath.h
170 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/bits/uClibc_fpmax.h
172 ifneq ($(UCLIBC_HAS_WCHAR),y)
173 # Remove wide char headers since wide char support is disabled.
174 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wctype.h
175 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wchar.h
177 ifneq ($(UCLIBC_HAS_LOCALE),y)
178 # Remove iconv header since locale support is disabled.
179 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/iconv.h
181 ifneq ($(UCLIBC_HAS_GLIBC_CUSTOM_PRINTF),y)
182 # Remove printf header since custom print specifier support is disabled.
183 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/printf.h
185 ifneq ($(UCLIBC_HAS_XLOCALE),y)
186 # Remove xlocale header since extended locale support is disabled.
187 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/xlocale.h
189 ifneq ($(UCLIBC_HAS_GETTEXT_AWARENESS),y)
190 # Remove libintl header since gettext support is disabled.
191 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/libintl.h
193 ifneq ($(UCLIBC_HAS_REGEX),y)
194 # Remove regex headers since regex support is disabled.
195 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regex.h
196 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regexp.h
198 ifneq ($(UCLIBC_HAS_WORDEXP),y)
199 # Remove wordexp header since wordexp support is disabled.
200 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wordexp.h
202 ifneq ($(UCLIBC_HAS_FTW),y)
203 # Remove ftw header since ftw support is disabled.
204 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ftw.h
206 ifneq ($(UCLIBC_HAS_GLOB),y)
207 # Remove glob header since glob support is disabled.
208 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/glob.h
210 ifneq ($(UCLIBC_HAS_GNU_GETOPT),y)
211 # Remove getopt header since gnu getopt support is disabled.
212 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/getopt.h
214 ifneq ($(HAS_SHADOW),y)
215 # Remove shadow header since shadow password support is disabled.
216 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/shadow.h
218 ifneq ($(PTHREADS_DEBUG_SUPPORT),y)
219 # Remove thread_db header since thread debug support is disabled.
220 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/thread_db.h
222 ifneq ($(UCLIBC_HAS_THREADS),y)
223 # Remove pthread headers since thread support is disabled.
224 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/*thread*.h
225 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/semaphore.h
226 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/bits/*thread*.h
228 -@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
229 chmod 755 $$i; chmod 644 $$i/*.h > /dev/null 2>&1; \
231 -find $(PREFIX)$(DEVEL_PREFIX) -name .svn | xargs $(RM) -r
232 -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1:\2/'` $(PREFIX)$(DEVEL_PREFIX)
234 # Installs development library links.
235 install_dev: install_headers
236 $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
237 -$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
238 ifeq ($(HAVE_SHARED),y)
239 for i in `find lib/ -type l -name 'lib[a-zA-Z]*.so' | \
240 sed -e 's/lib\///'` ; do \
241 $(LN) -sf $(RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB)$$i.$(MAJOR_VERSION) \
242 $(PREFIX)$(DEVEL_PREFIX)lib/$$i; \
244 if [ -f $(TOPDIR)lib/libc.so -a -f $(PREFIX)$(RUNTIME_PREFIX)lib/$(SHARED_MAJORNAME) ] ; then \
245 $(RM) $(PREFIX)$(DEVEL_PREFIX)lib/libc.so; \
246 sed -e 's:$(NONSHARED_LIBNAME):$(DEVEL_PREFIX)lib/$(NONSHARED_LIBNAME):' \
247 -e 's:$(SHARED_MAJORNAME):$(RUNTIME_PREFIX)lib/$(SHARED_MAJORNAME):' \
248 -e 's:$(UCLIBC_LDSO):$(RUNTIME_PREFIX)lib/$(UCLIBC_LDSO):' \
249 $(TOPDIR)lib/libc.so > $(PREFIX)$(DEVEL_PREFIX)lib/libc.so; \
251 ifeq ($(PTHREADS_DEBUG_SUPPORT),y)
252 $(LN) -sf $(RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB)libthread_db.so.1 \
253 $(PREFIX)$(DEVEL_PREFIX)lib/libthread_db.so
255 # # If we build shared libraries then the static libs are PIC...
256 # # Make _pic.a symlinks to make mklibs.py and similar tools happy.
257 if [ -d lib ] ; then \
258 for i in `find lib/ -type f -name 'lib*.a' | sed -e 's/lib\///'` ; do \
259 $(LN) -sf $$i $(PREFIX)$(DEVEL_PREFIX)lib/`echo $$i \
260 | sed -e 's/\.a$$/_pic.a/'`; \
265 # Installs run-time libraries
267 ifeq ($(HAVE_SHARED),y)
268 $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib
269 $(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
270 $(PREFIX)$(RUNTIME_PREFIX)lib
271 cp -dRf lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
272 @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
275 $(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
276 $(PREFIX)$(RUNTIME_PREFIX)lib; \
281 $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils
283 # Installs helper applications, such as 'ldd' and 'ldconfig'
285 $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils install
289 $(SECHO) Finished installing ...
292 else # ifeq ($(HAVE_DOT_CONFIG),y)
297 # ---------------------------------------------------------------------------
299 $(MAKE) -C extra/config conf
302 $(MAKE) -C extra/config ncurses mconf
304 menuconfig: extra/config/mconf
305 $(RM) -r include/bits
306 $(INSTALL) -d include/bits
307 @./extra/config/mconf extra/Configs/Config.in
310 config: extra/config/conf
311 $(RM) -r include/bits
312 $(INSTALL) -d include/bits
313 @./extra/config/conf extra/Configs/Config.in
315 oldconfig: extra/config/conf
316 $(RM) -r include/bits
317 $(INSTALL) -d include/bits
318 @./extra/config/conf -o extra/Configs/Config.in
320 randconfig: extra/config/conf
321 $(RM) -r include/bits
322 $(INSTALL) -d include/bits
323 @./extra/config/conf -r extra/Configs/Config.in
325 allyesconfig: extra/config/conf
326 $(RM) -r include/bits
327 $(INSTALL) -d include/bits
328 @./extra/config/conf -y extra/Configs/Config.in
329 sed -i -e "s/^DODEBUG=.*/# DODEBUG is not set/" .config
330 sed -i -e "s/^DOASSERTS=.*/# DOASSERTS is not set/" .config
331 sed -i -e "s/^SUPPORT_LD_DEBUG_EARLY=.*/# SUPPORT_LD_DEBUG_EARLY is not set/" .config
332 sed -i -e "s/^SUPPORT_LD_DEBUG=.*/# SUPPORT_LD_DEBUG is not set/" .config
333 sed -i -e "s/^UCLIBC_MJN3_ONLY=.*/# UCLIBC_MJN3_ONLY is not set/" .config
334 @./extra/config/conf -o extra/Configs/Config.in
336 allnoconfig: extra/config/conf
337 $(RM) -r include/bits
338 $(INSTALL) -d include/bits
339 @./extra/config/conf -n extra/Configs/Config.in
341 defconfig: extra/config/conf
342 $(RM) -r include/bits
343 $(INSTALL) -d include/bits
344 @./extra/config/conf -d extra/Configs/Config.in
347 @$(RM) -r lib include/bits
348 $(RM) libc/*.a libc/obj.* libc/nonshared_obj.*
349 $(RM) libc/misc/internals/interp.c
351 $(RM) include/fpu_control.h include/dl-osinfo.h
352 $(MAKE) -C extra/locale clean
353 $(MAKE) -C ldso headers_clean
354 $(MAKE) -C libpthread headers_clean
355 $(MAKE) -C test clean
356 $(MAKE) -C utils clean
358 for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
359 $(RM) include/sys/$$i; \
361 if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
362 for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
363 $(RM) include/sys/$$i; \
366 @$(RM) include/linux include/asm*
367 @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
368 $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
370 -find . \( -name \*.o -o -name \*.os \) -exec $(RM) {} \;
373 -find . \( -name core -o -name \*.orig -o -name \*~ \) -exec $(RM) {} \;
374 $(RM) .config .config.old .config.cmd
375 $(RM) extra/locale/*.txt
376 $(MAKE) -C extra clean
380 $(RM) -r uClibc-$(VERSION); \
381 cp -dRf uClibc uClibc-$(VERSION); \
382 find uClibc-$(VERSION)/ -type f \
383 -name .\#* -exec $(RM) -r {} \; ; \
384 find uClibc-$(VERSION)/ -type d \
385 -name .svn -exec $(RM) -r {} \; ; \
387 tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/
389 endif # ifeq ($(HAVE_DOT_CONFIG),y)
394 .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig utils