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 \
31 DIRS = ldso libc libcrypt libresolv libnsl libutil libm libpthread
32 ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
36 ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
38 all: headers pregen subdirs shared finished
40 # In this section, we need .config
43 .PHONY: $(SHARED_TARGET)
44 shared: $(SHARED_TARGET)
45 ifeq ($(strip $(HAVE_SHARED)),y)
46 @$(MAKE) -C libc shared
47 @$(MAKE) -C ldso shared
48 @$(MAKE) -C libcrypt shared
49 @$(MAKE) -C libresolv shared
50 @$(MAKE) -C libnsl shared
51 @$(MAKE) -C libutil shared
52 @$(MAKE) -C libm shared
53 @$(MAKE) -C libpthread shared
54 ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
55 @$(MAKE) -C libintl shared
58 ifeq ($(SHARED_TARGET),)
60 @echo Not building shared libraries...
65 ifneq ($(SHARED_TARGET),)
67 lib/main.o: $(ROOTDIR)/lib/libc/main.c
68 $(CC) $(CFLAGS) $(ARCH_CFLAGS) -c -o $@ $(ROOTDIR)/lib/libc/main.c
70 bogus $(SHARED_TARGET): lib/libc.a lib/main.o Makefile
71 make -C $(ROOTDIR) relink
72 $(CC) -nostartfiles -o $(SHARED_TARGET) $(ARCH_CFLAGS) -Wl,-elf2flt -nostdlib \
73 -Wl,-shared-lib-id,${LIBID} \
75 -Wl,--whole-archive,lib/libc.a,-lgcc,--no-whole-archive
76 $(OBJCOPY) -L _GLOBAL_OFFSET_TABLE_ -L main -L __main -L _start \
77 -L __uClibc_main -L __uClibc_start_main -L lib_main \
79 -L __do_global_dtors -L __do_global_ctors \
80 -L __CTOR_LIST__ -L __DTOR_LIST__ \
81 -L _current_shared_library_a5_offset_ \
83 $(LN) -sf $(SHARED_TARGET).gdb .
88 @echo Finally finished compiling...
92 # Target for uClinux distro
96 @if [ "$(CONFIG_BINFMT_SHARED_FLAT)" = "y" ]; then \
97 [ -e $(ROMFSDIR)/lib ] || $(INSTALL) -d $(ROMFSDIR)/lib; \
98 $(ROMFSINST) $(SHARED_TARGET) /lib/lib$(LIBID).so; \
100 ifeq ($(strip $(HAVE_SHARED)),y)
101 $(INSTALL) -d $(ROMFSDIR)/lib
102 $(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
104 cp -fa lib/*.so.* $(ROMFSDIR)/lib/.
105 @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
107 $(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
110 /lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
111 /lib/ld-linux.so.2; \
115 include/bits/uClibc_config.h: .config
116 @if [ ! -x ./extra/config/conf ] ; then \
117 make -C extra/config conf; \
119 $(RM) -r include/bits
120 $(INSTALL) -d include/bits
121 @./extra/config/conf -o extra/Configs/Config.in
123 headers: include/bits/uClibc_config.h
124 ifeq ($(strip $(UCLIBC_HAS_MMU)),y)
125 @set -x; ./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH)
127 @set -x; ./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) -n
131 for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
134 if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
135 for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
141 for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
144 if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
145 for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
151 TOPDIR=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
152 if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
153 $(RM) include/bits/sysnum.h.new; \
155 mv -f include/bits/sysnum.h.new include/bits/sysnum.h; \
157 $(MAKE) -C libc/sysdeps/linux/common headers
158 $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
160 # Command used to download source code
161 WGET:=wget --passive-ftp
163 LOCALE_DATA_FILENAME:=uClibc-locale-030818.tgz
166 ifeq ($(strip $(UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA)),y)
168 if [ ! -f $(LOCALE_DATA_FILENAME) ] ; then \
169 $(WGET) http://www.uclibc.org/downloads/$(LOCALE_DATA_FILENAME) ; \
172 ifeq ($(strip $(UCLIBC_PREGENERATED_LOCALE_DATA)),y)
173 (cd extra/locale; zcat $(LOCALE_DATA_FILENAME) | tar -xvf -)
174 make -C extra/locale pregen
178 subdirs: $(patsubst %, _dir_%, $(DIRS))
180 $(patsubst %, _dir_%, $(DIRS)) : dummy
181 $(MAKE) -C $(patsubst _dir_%, %, $@)
186 install: install_runtime install_dev finished2
189 # Installs header files and development library links.
191 $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
192 $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
193 -$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
194 tar -chf - include | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX);
195 ifneq ($(strip $(UCLIBC_HAS_FLOATS)),y)
196 # Remove floating point related headers since float support is disabled.
197 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/complex.h
198 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/fpu_control.h
199 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ieee754.h
200 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/math.h
201 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/tgmath.h
203 ifneq ($(strip $(UCLIBC_HAS_WCHAR)),y)
204 # Remove wide char headers since wide char support is disabled.
205 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wctype.h
206 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wchar.h
208 ifneq ($(strip $(UCLIBC_HAS_LOCALE)),y)
209 # Remove iconv header since locale support is disabled.
210 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/iconv.h
212 ifneq ($(strip $(UCLIBC_HAS_GLIBC_CUSTOM_PRINTF)),y)
213 # Remove printf header since custom print specifier support is disabled.
214 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/printf.h
216 ifneq ($(strip $(UCLIBC_HAS_XLOCALE)),y)
217 # Remove xlocale header since extended locale support is disabled.
218 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/xlocale.h
220 ifneq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
221 # Remove libintl header since gettext support is disabled.
222 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/libintl.h
224 ifneq ($(strip $(UCLIBC_HAS_REGEX)),y)
225 # Remove regex headers since regex support is disabled.
226 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regex.h
227 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regexp.h
229 ifneq ($(strip $(UCLIBC_HAS_WORDEXP)),y)
230 # Remove wordexp header since wordexp support is disabled.
231 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wordexp.h
233 ifneq ($(strip $(UCLIBC_HAS_FTW)),y)
234 # Remove ftw header since ftw support is disabled.
235 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ftw.h
237 ifneq ($(strip $(UCLIBC_HAS_GLOB)),y)
238 # Remove glob header since glob support is disabled.
239 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/glob.h
241 ifneq ($(strip $(UCLIBC_HAS_GNU_GETOPT)),y)
242 # Remove getopt header since gnu getopt support is disabled.
243 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/getopt.h
245 ifneq ($(strip $(HAS_SHADOW)),y)
246 # Remove getopt header since shadow password support is disabled.
247 $(RM) $(PREFIX)$(DEVEL_PREFIX)include/shadow.h
249 -@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
250 chmod 755 $$i; chmod 644 $$i/*.h > /dev/null 2>&1; \
252 -find $(PREFIX)$(DEVEL_PREFIX) -name CVS | xargs $(RM) -r;
253 -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1.\2/'` $(PREFIX)$(DEVEL_PREFIX)
254 ifeq ($(strip $(HAVE_SHARED)),y)
255 for i in `find lib/ -type l -name 'lib[a-zA-Z]*.so' | \
256 sed -e 's/lib\///'` ; do \
257 $(LN) -sf $(RUNTIME_PREFIX)lib/$$i.$(MAJOR_VERSION) \
258 $(PREFIX)$(DEVEL_PREFIX)lib/$$i; \
260 ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
261 ln -sf $(RUNTIME_PREFIX)lib/libthread_db.so.1 \
262 $(PREFIX)$(DEVEL_PREFIX)lib/libthread_db.so
264 # # If we build shared libraries then the static libs are PIC...
265 # # Make _pic.a symlinks to make mklibs.py and similar tools happy.
266 for i in `find lib/ -type f -name '*.a' | sed -e 's/lib\///'` ; do \
267 $(LN) -sf $$i $(PREFIX)$(DEVEL_PREFIX)lib/`echo $$i \
268 | sed -e 's/\.a$$/_pic.a/'`; \
273 # Installs run-time libraries
275 ifeq ($(strip $(HAVE_SHARED)),y)
276 $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib
277 $(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
278 $(PREFIX)$(RUNTIME_PREFIX)lib
279 cp -fa lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
280 @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
282 $(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
283 $(PREFIX)$(RUNTIME_PREFIX)lib; \
288 ifeq ($(strip $(HAVE_SHARED)),y)
290 $(MAKE) CROSS=$(CROSS) CC=$(CC) -C utils
295 # Installs helper applications, such as 'ldd' and 'ldconfig'
297 $(MAKE) CROSS=$(CROSS) CC=$(CC) -C utils install
298 #ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y)
299 # @$(MAKE) -C libc/misc/wchar iconv.target
300 # $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)/usr/bin;
301 # $(INSTALL) -m 755 libc/misc/wchar/iconv.target $(PREFIX)$(RUNTIME_PREFIX)/usr/bin/iconv
306 @echo Finished installing...
309 else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
314 # ---------------------------------------------------------------------------
316 make -C extra/config conf
319 make -C extra/config ncurses mconf
321 menuconfig: extra/config/mconf
322 $(RM) -r include/bits
323 $(INSTALL) -d include/bits
324 @./extra/config/mconf extra/Configs/Config.in
326 config: extra/config/conf
327 $(RM) -r include/bits
328 $(INSTALL) -d include/bits
329 @./extra/config/conf extra/Configs/Config.in
331 oldconfig: extra/config/conf
332 $(RM) -r include/bits
333 $(INSTALL) -d include/bits
334 @./extra/config/conf -o extra/Configs/Config.in
336 randconfig: extra/config/conf
337 $(RM) -r include/bits
338 $(INSTALL) -d include/bits
339 @./extra/config/conf -r extra/Configs/Config.in
341 allyesconfig: extra/config/conf
342 $(RM) -r include/bits
343 $(INSTALL) -d include/bits
344 @./extra/config/conf -y extra/Configs/Config.in
346 allnoconfig: extra/config/conf
347 $(RM) -r include/bits
348 $(INSTALL) -d include/bits
349 @./extra/config/conf -n extra/Configs/Config.in
351 defconfig: extra/config/conf
352 $(RM) -r include/bits
353 $(INSTALL) -d include/bits
354 @./extra/config/conf -d extra/Configs/Config.in
358 - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec $(RM) {} \;
359 @$(RM) -r tmp lib include/bits libc/tmp _install
360 $(MAKE) -C test clean
361 $(MAKE) -C ldso clean
362 $(MAKE) -C libc/misc/internals clean
363 $(MAKE) -C libc/misc/wchar clean
364 $(MAKE) -C libc/unistd clean
365 $(MAKE) -C libc/sysdeps/linux/common clean
366 $(MAKE) -C extra/locale clean
368 for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
369 $(RM) include/sys/$$i; \
371 if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
372 for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
373 $(RM) include/sys/$$i; \
376 @$(RM) include/linux include/scsi include/asm*
377 @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
378 $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
382 $(RM) .config .config.old .config.cmd
383 $(MAKE) -C extra clean
387 $(RM) -r uClibc-$(VERSION); \
388 cp -fa uClibc uClibc-$(VERSION); \
389 find uClibc-$(VERSION)/ -type f \
390 -name .\#* -exec $(RM) -r {} \; ; \
391 find uClibc-$(VERSION)/ -type d \
392 -name CVS -exec $(RM) -r {} \; ; \
394 tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/;
396 endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
398 .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig