OSDN Git Service

Add back in table-less ctype funcs for those interested in minimizing
[uclinux-h8/uclibc-ng.git] / Makefile
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000-2003 Erik Andersen <andersen@uclibc.org>
4 #
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
9 # version.
10 #
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.
15 #
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
20
21
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 \
27         release tags TAGS
28 TOPDIR=./
29 include Rules.mak
30
31 DIRS = extra ldso libc libcrypt libresolv libnsl libutil libm libpthread
32 ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
33         DIRS += libintl
34 endif
35
36 ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
37
38 all: headers subdirs shared utils finished
39
40 # In this section, we need .config
41 -include .config.cmd
42
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
56 endif
57 else
58 ifeq ($(SHARED_TARGET),)
59         @echo
60         @echo Not building shared libraries...
61         @echo
62 endif
63 endif
64
65 ifneq ($(SHARED_TARGET),)
66
67 lib/main.o: $(ROOTDIR)/lib/libc/main.c
68         $(CC) $(CFLAGS) $(ARCH_CFLAGS) -c -o $@ $(ROOTDIR)/lib/libc/main.c
69
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}                             \
74                 lib/main.o \
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 \
78                 -L _exit_dummy_ref              \
79                 -L __do_global_dtors -L __do_global_ctors               \
80                 -L __CTOR_LIST__ -L __DTOR_LIST__                       \
81                 -L _current_shared_library_a5_offset_                   \
82                 $(SHARED_TARGET).gdb
83         ln -sf $(SHARED_TARGET).gdb .
84 endif
85
86 finished: shared
87         @echo
88         @echo Finally finished compiling...
89         @echo
90
91 #
92 # Target for uClinux distro
93 #
94 .PHONY: romfs
95 romfs:
96         @if [ "$(CONFIG_BINFMT_SHARED_FLAT)" = "y" ]; then \
97                 [ -e $(ROMFSDIR)/lib ] || mkdir -p $(ROMFSDIR)/lib; \
98                 $(ROMFSINST) $(SHARED_TARGET) /lib/lib$(LIBID).so; \
99         fi
100 ifeq ($(strip $(HAVE_SHARED)),y)
101         install -d $(ROMFSDIR)/lib
102         install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
103                 $(ROMFSDIR)/lib
104         cp -fa lib/*.so.* $(ROMFSDIR)/lib/.
105         @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
106             set -x -e; \
107             install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
108                         $(ROMFSDIR)/lib; \
109                 $(ROMFSINST) -s \
110                         /lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
111                         /lib/ld-linux.so.2; \
112         fi;
113 endif
114
115 include/bits/uClibc_config.h: .config
116         @if [ ! -x ./extra/config/conf ] ; then \
117             make -C extra/config conf; \
118         fi;
119         rm -rf include/bits
120         mkdir -p include/bits
121         @./extra/config/conf -o extra/Configs/Config.$(TARGET_ARCH)
122
123 headers: include/bits/uClibc_config.h
124 ifeq ($(strip $(UCLIBC_HAS_MMU)),y)
125         @./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH)
126 else
127         @./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) -n
128 endif
129         @if [ "$(TARGET_ARCH)" = "mipsel" ]; then \
130             (cd libc/sysdeps/linux; \
131             ln -fs mips mipsel); \
132             (cd ldso/ldso; \
133             ln -fs mips mipsel); \
134             (cd libpthread/linuxthreads/sysdeps; \
135             ln -fs mips mipsel); \
136         fi;
137         @cd include/bits; \
138         set -e; \
139         for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
140                 ln -fs $$i .; \
141         done; \
142         if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
143                 for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
144                         ln -fs $$i .; \
145                 done; \
146         fi
147         @cd include/sys; \
148         set -e; \
149         for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
150                 ln -fs $$i .; \
151         done; \
152         if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
153                 for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
154                         ln -fs $$i .; \
155                 done; \
156         fi
157         @cd $(TOPDIR); \
158         set -x -e; \
159         TOPDIR=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
160         if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
161                 $(RM) include/bits/sysnum.h.new; \
162         else \
163                 mv -f include/bits/sysnum.h.new include/bits/sysnum.h; \
164         fi
165         $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
166
167 subdirs: $(patsubst %, _dir_%, $(DIRS))
168
169 $(patsubst %, _dir_%, $(DIRS)) : dummy
170         $(MAKE) -C $(patsubst _dir_%, %, $@)
171
172 tags:
173         ctags -R
174
175 install: install_dev install_runtime install_toolchain install_utils finished2
176
177
178 # Installs header files and development library links.
179 install_dev:
180         install -d $(PREFIX)$(DEVEL_PREFIX)/lib
181         install -d $(PREFIX)$(DEVEL_PREFIX)/usr/lib
182         install -d $(PREFIX)$(DEVEL_PREFIX)/include
183         -install -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)/lib/
184         tar -chf - include | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX);
185 ifneq ($(strip $(UCLIBC_HAS_FLOATS)),y)
186         # Remove floating point related headers since float support is disabled.
187         rm $(PREFIX)$(DEVEL_PREFIX)/include/complex.h
188         rm $(PREFIX)$(DEVEL_PREFIX)/include/fpu_control.h
189         rm $(PREFIX)$(DEVEL_PREFIX)/include/ieee754.h
190         rm $(PREFIX)$(DEVEL_PREFIX)/include/math.h
191         rm $(PREFIX)$(DEVEL_PREFIX)/include/tgmath.h
192 endif
193 ifneq ($(strip $(UCLIBC_HAS_WCHAR)),y)
194         # Remove wide char headers since wide char support is disabled.
195         rm $(PREFIX)$(DEVEL_PREFIX)/include/wctype.h
196         rm $(PREFIX)$(DEVEL_PREFIX)/include/wchar.h
197 endif
198 ifneq ($(strip $(UCLIBC_HAS_LOCALE)),y)
199         # Remove iconv header since locale support is disabled.
200         rm $(PREFIX)$(DEVEL_PREFIX)/include/iconv.h
201 endif
202 ifneq ($(strip $(UCLIBC_HAS_GLIBC_CUSTOM_PRINTF)),y)
203         # Remove printf header since custom print specifier support is disabled.
204         rm $(PREFIX)$(DEVEL_PREFIX)/include/printf.h
205 endif
206 ifneq ($(strip $(UCLIBC_HAS_XLOCALE)),y)
207         # Remove xlocale header since extended locale support is disabled.
208         rm $(PREFIX)$(DEVEL_PREFIX)/include/xlocale.h
209 endif
210 ifneq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
211         # Remove libintl header since gettext support is disabled.
212         rm $(PREFIX)$(DEVEL_PREFIX)/include/libintl.h
213 endif
214 ifneq ($(strip $(UCLIBC_HAS_REGEX)),y)
215         # Remove regex headers since regex support is disabled.
216         rm $(PREFIX)$(DEVEL_PREFIX)/include/regex.h
217         rm $(PREFIX)$(DEVEL_PREFIX)/include/regexp.h
218 endif
219 ifneq ($(strip $(UCLIBC_HAS_WORDEXP)),y)
220         # Remove wordexp header since wordexp support is disabled.
221         rm $(PREFIX)$(DEVEL_PREFIX)/include/wordexp.h
222 endif
223 ifneq ($(strip $(UCLIBC_HAS_FTW)),y)
224         # Remove ftw header since ftw support is disabled.
225         rm $(PREFIX)$(DEVEL_PREFIX)/include/ftw.h
226 endif
227 ifneq ($(strip $(UCLIBC_HAS_GLOB)),y)
228         # Remove glob header since glob support is disabled.
229         rm $(PREFIX)$(DEVEL_PREFIX)/include/glob.h
230 endif
231 ifneq ($(strip $(UCLIBC_HAS_GNU_GETOPT)),y)
232         # Remove getopt header since gnu getopt support is disabled.
233         rm $(PREFIX)$(DEVEL_PREFIX)/include/getopt.h
234 endif
235         -@for i in `find  $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
236             chmod -f 755 $$i; chmod -f 644 $$i/*.h; \
237         done;
238         -find $(PREFIX)$(DEVEL_PREFIX) -name CVS | xargs rm -rf;
239         -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1.\2/'` $(PREFIX)$(DEVEL_PREFIX)
240 ifeq ($(strip $(HAVE_SHARED)),y)
241         -install -m 644 lib/*.so $(PREFIX)$(DEVEL_PREFIX)/lib/
242         -find lib/ -type l -name '*.so' -exec cp -fa {} $(PREFIX)$(DEVEL_PREFIX)/lib ';'
243         # If we build shared libraries then the static libs are PIC...
244         # Make _pic.a symlinks to make mklibs.py and similar tools happy.
245         for i in `find lib/  -type f -name '*.a' | sed -e 's/lib\///'` ; do \
246                 ln -sf $$i $(PREFIX)$(DEVEL_PREFIX)/lib/`echo $$i | sed -e 's/\.a$$/_pic.a/'`; \
247         done
248 endif
249
250
251 # Installs run-time libraries and helper apps onto the host system
252 # allowing cross development.  If you want to deploy to a target 
253 # system, use the "install_target" target instead... 
254 install_runtime:
255 ifeq ($(strip $(HAVE_SHARED)),y)
256         install -d $(PREFIX)$(DEVEL_PREFIX)/lib
257         install -d $(PREFIX)$(DEVEL_PREFIX)/bin
258         install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
259                 $(PREFIX)$(DEVEL_PREFIX)/lib
260         cp -fa lib/*.so.* $(PREFIX)$(DEVEL_PREFIX)/lib
261         @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
262             set -x -e; \
263             install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
264                         $(PREFIX)$(DEVEL_PREFIX)/lib; \
265         fi;
266         #@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
267         #    install -d $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
268         #    ln -sf $(PREFIX)$(DEVEL_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
269         #               $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO); \
270         #fi;
271 endif
272
273 install_toolchain:
274         install -d $(PREFIX)$(DEVEL_PREFIX)/lib
275         install -d $(PREFIX)$(DEVEL_PREFIX)/bin
276         install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin
277         install -d $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin
278         $(MAKE) -C extra/gcc-uClibc install
279
280 ifeq ($(strip $(HAVE_SHARED)),y)
281 utils: $(TOPDIR)ldso/util/ldd
282         $(MAKE) -C ldso utils
283 else
284 utils: dummy
285 endif
286
287 install_utils: utils
288 ifeq ($(strip $(HAVE_SHARED)),y)
289         install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin;
290         install -m 755 ldso/util/ldd \
291                 $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd
292         ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd \
293                 $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/ldd
294         # For now, don't bother with readelf since surely the host
295         # system has binutils, or we couldn't have gotten this far...
296         #install -m 755 ldso/util/readelf \
297         #       $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf
298         #ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf \
299         #       $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/readelf
300         @if [ -x ldso/util/ldconfig ] ; then \
301             set -x -e; \
302             install -d $(PREFIX)$(DEVEL_PREFIX)/etc; \
303             install -m 755 ldso/util/ldconfig \
304                     $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig; \
305             ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig \
306                     $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/ldconfig; \
307         fi;
308 endif
309
310 # Installs run-time libraries and helper apps in preparation for
311 # deploying onto a target system, but installed below wherever
312 # $PREFIX is set to, allowing you to package up the result for
313 # deployment onto your target system.
314 install_target:
315 ifeq ($(strip $(HAVE_SHARED)),y)
316         install -d $(PREFIX)$(TARGET_PREFIX)/lib
317         install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin
318         install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
319                 $(PREFIX)$(TARGET_PREFIX)/lib
320         cp -fa lib/*.so.* $(PREFIX)$(TARGET_PREFIX)/lib
321         @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
322             set -x -e; \
323             install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
324                         $(PREFIX)$(TARGET_PREFIX)/lib; \
325         fi;
326         #@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
327         #    install -d $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
328         #    ln -sf $(PREFIX)$(TARGET_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
329         #               $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO); \
330         #fi;
331 endif
332
333 install_target_utils:
334 ifeq ($(strip $(HAVE_SHARED)),y)
335         @$(MAKE) -C ldso/util ldd.target readelf.target #ldconfig.target
336         install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin;
337         install -m 755 ldso/util/ldd.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/ldd
338         install -m 755 ldso/util/readelf.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/readelf
339         @if [ -x ldso/util/ldconfig.target ] ; then \
340             set -x -e; \
341             install -d $(PREFIX)$(TARGET_PREFIX)/etc; \
342             install -d $(PREFIX)$(TARGET_PREFIX)/sbin; \
343             install -m 755 ldso/util/ldconfig.target $(PREFIX)$(TARGET_PREFIX)/sbin/ldconfig; \
344         fi;
345 endif
346 ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y)
347         @$(MAKE) -C libc/misc/wchar iconv.target
348         install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin;
349         install -m 755 libc/misc/wchar/iconv.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/iconv
350 endif
351
352 finished2:
353         @echo
354         @echo Finished installing...
355         @echo
356
357 else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
358
359 all: menuconfig
360
361 # configuration
362 # ---------------------------------------------------------------------------
363 extra/config/conf: buildconf
364         -@if [ ! -f .config ] ; then \
365                 cp extra/Configs/Config.$(TARGET_ARCH).default .config; \
366         fi
367
368 buildconf:
369         make -C extra/config conf
370
371 extra/config/mconf: buildmconf
372         -@if [ ! -f .config ] ; then \
373                 cp extra/Configs/Config.$(TARGET_ARCH).default .config; \
374         fi
375
376 buildmconf:
377         make -C extra/config ncurses mconf
378
379 menuconfig: extra/config/mconf
380         rm -rf include/bits
381         mkdir -p include/bits
382         @./extra/config/mconf extra/Configs/Config.$(TARGET_ARCH)
383
384 config: extra/config/conf
385         rm -rf include/bits
386         mkdir -p include/bits
387         @./extra/config/conf extra/Configs/Config.$(TARGET_ARCH)
388
389 oldconfig: extra/config/conf
390         rm -rf include/bits
391         mkdir -p include/bits
392         @./extra/config/conf -o extra/Configs/Config.$(TARGET_ARCH)
393
394 randconfig: extra/config/conf
395         rm -rf include/bits
396         mkdir -p include/bits
397         @./extra/config/conf -r extra/Configs/Config.$(TARGET_ARCH)
398
399 allyesconfig: extra/config/conf
400         rm -rf include/bits
401         mkdir -p include/bits
402         @./extra/config/conf -y extra/Configs/Config.$(TARGET_ARCH)
403
404 allnoconfig: extra/config/conf
405         rm -rf include/bits
406         mkdir -p include/bits
407         @./extra/config/conf -n extra/Configs/Config.$(TARGET_ARCH)
408
409 defconfig: extra/config/conf
410         rm -rf include/bits
411         mkdir -p include/bits
412         @./extra/config/conf -d extra/Configs/Config.$(TARGET_ARCH)
413
414
415 clean:
416         - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec rm -f {} \;
417         @rm -rf tmp lib include/bits libc/tmp _install
418         $(MAKE) -C test clean
419         $(MAKE) -C ldso clean
420         $(MAKE) -C libc/misc/internals clean
421         $(MAKE) -C libc/misc/wchar clean
422         $(MAKE) -C libc/unistd clean
423         $(MAKE) -C libc/sysdeps/linux/common clean
424         $(MAKE) -C extra/gcc-uClibc clean
425         $(MAKE) -C extra/locale clean
426         @set -e; \
427         for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
428                 rm -f include/sys/$$i; \
429         done; \
430         if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
431                 for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
432                         rm -f include/sys/$$i; \
433                 done; \
434         fi;
435         @rm -f include/linux include/scsi include/asm
436         @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then              \
437             $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean;         \
438         fi;
439         @if [ "$(TARGET_ARCH)" = "mipsel" ]; then \
440             $(MAKE) -C libc/sysdeps/linux/mips clean; \
441             rm -f ldso/ldso/mipsel; \
442             rm -f libc/sysdeps/linux/mipsel; \
443             rm -f libpthread/linuxthreads/sysdeps/mipsel; \
444         fi;
445
446 distclean: clean
447         rm -f .config .config.old .config.cmd
448         $(MAKE) -C extra clean
449
450 release: distclean
451         cd ..;                                  \
452         rm -rf uClibc-$(VERSION);               \
453         cp -fa uClibc uClibc-$(VERSION);                \
454         find uClibc-$(VERSION)/ -type f         \
455             -name .\#* -exec rm -rf {} \; ;     \
456         find uClibc-$(VERSION)/ -type d         \
457             -name CVS  -exec rm -rf {} \; ;     \
458                                                 \
459         tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/;
460
461 endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
462
463 .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig
464
465