OSDN Git Service

We _must_ copy include/asm/ and include/linux/ when installing headers, since
[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 = ldso libc libcrypt libresolv libnsl libutil libm libpthread librt
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 pregen subdirs shared finished
39
40 # In this section, we need .config
41 -include .config.cmd
42
43 shared: subdirs
44 ifeq ($(strip $(HAVE_SHARED)),y)
45         $(SECHO)
46         $(SECHO) Building shared libraries ...
47         $(SECHO)
48         @$(MAKE) -C libc shared
49         @$(MAKE) -C ldso shared
50         @$(MAKE) -C libcrypt shared
51         @$(MAKE) -C libresolv shared
52         @$(MAKE) -C libnsl shared
53         @$(MAKE) -C libutil shared
54         @$(MAKE) -C libm shared
55         @$(MAKE) -C libpthread shared
56         @$(MAKE) -C librt shared
57 ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
58         @$(MAKE) -C libintl shared
59 endif
60 else
61         $(SECHO)
62         $(SECHO) Not building shared libraries ...
63         $(SECHO)
64 endif
65
66 finished: shared
67         $(SECHO)
68         $(SECHO) Finally finished compiling ...
69         $(SECHO)
70
71 include/bits/uClibc_config.h: .config
72         @if [ ! -x ./extra/config/conf ] ; then \
73             $(MAKE) -C extra/config conf; \
74         fi;
75         $(RM) -r include/bits
76         $(INSTALL) -d include/bits
77         @./extra/config/conf -o extra/Configs/Config.in
78
79 # For the moment, we have to keep re-running this target 
80 # because the fix includes scripts rely on pre-processers 
81 # in order to generate the headers correctly :(.  That 
82 # means we can't use the $(HOSTCC) in order to get the 
83 # correct output.
84 ifeq ($(strip $(ARCH_HAS_MMU)),y)
85 export header_extra_args = 
86 else
87 export header_extra_args = -n
88 endif
89 headers: include/bits/uClibc_config.h
90         @$(SHELL_SET_X); \
91         ./extra/scripts/fix_includes.sh \
92                 -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) \
93                 $(header_extra_args)
94         @cd include/bits; \
95         set -e; \
96         for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
97                 $(LN) -fs $$i .; \
98         done; \
99         if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
100                 for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
101                         $(LN) -fs $$i .; \
102                 done; \
103         fi
104         @cd include/sys; \
105         set -e; \
106         for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
107                 $(LN) -fs $$i .; \
108         done; \
109         if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
110                 for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
111                         $(LN) -fs $$i .; \
112                 done; \
113         fi
114         @cd $(TOPDIR); \
115         set -e; \
116         $(SHELL_SET_X); \
117         TOPDIR=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
118         if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
119                 $(RM) include/bits/sysnum.h.new; \
120         else \
121                 mv -f include/bits/sysnum.h.new include/bits/sysnum.h; \
122         fi
123         $(MAKE) -C libc/sysdeps/linux/common headers
124         $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
125
126 # Command used to download source code
127 WGET:=wget --passive-ftp
128
129 LOCALE_DATA_FILENAME:=uClibc-locale-030818.tgz
130
131 pregen: headers
132 ifeq ($(strip $(UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA)),y)
133         (cd extra/locale; \
134         if [ ! -f $(LOCALE_DATA_FILENAME) ] ; then \
135         $(WGET) http://www.uclibc.org/downloads/$(LOCALE_DATA_FILENAME) ; \
136         fi );
137 endif
138 ifeq ($(strip $(UCLIBC_PREGENERATED_LOCALE_DATA)),y)
139         (cd extra/locale; zcat $(LOCALE_DATA_FILENAME) | tar -xvf -)
140         $(MAKE) -C extra/locale pregen
141 endif
142
143
144 subdirs: $(patsubst %, _dir_%, $(DIRS))
145 $(patsubst %, _dir_%, $(DIRS)): headers
146         $(MAKE) -C $(patsubst _dir_%, %, $@)
147
148 tags:
149         ctags -R
150
151 install: install_runtime install_dev finished2
152
153
154 RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB=$(shell extra/scripts/relative_path.sh $(DEVEL_PREFIX)lib $(RUNTIME_PREFIX)lib)
155
156 # Installs header files and development library links.
157 install_dev:
158         $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
159         $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
160         -$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
161         tar -chf - include --exclude .svn --exclude CVS \
162                 | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX)
163 ifneq ($(strip $(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 endif
171 ifneq ($(strip $(UCLIBC_HAS_WCHAR)),y)
172         # Remove wide char headers since wide char support is disabled.
173         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wctype.h
174         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wchar.h
175 endif
176 ifneq ($(strip $(UCLIBC_HAS_LOCALE)),y)
177         # Remove iconv header since locale support is disabled.
178         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/iconv.h
179 endif
180 ifneq ($(strip $(UCLIBC_HAS_GLIBC_CUSTOM_PRINTF)),y)
181         # Remove printf header since custom print specifier support is disabled.
182         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/printf.h
183 endif
184 ifneq ($(strip $(UCLIBC_HAS_XLOCALE)),y)
185         # Remove xlocale header since extended locale support is disabled.
186         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/xlocale.h
187 endif
188 ifneq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
189         # Remove libintl header since gettext support is disabled.
190         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/libintl.h
191 endif
192 ifneq ($(strip $(UCLIBC_HAS_REGEX)),y)
193         # Remove regex headers since regex support is disabled.
194         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regex.h
195         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regexp.h
196 endif
197 ifneq ($(strip $(UCLIBC_HAS_WORDEXP)),y)
198         # Remove wordexp header since wordexp support is disabled.
199         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wordexp.h
200 endif
201 ifneq ($(strip $(UCLIBC_HAS_FTW)),y)
202         # Remove ftw header since ftw support is disabled.
203         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ftw.h
204 endif
205 ifneq ($(strip $(UCLIBC_HAS_GLOB)),y)
206         # Remove glob header since glob support is disabled.
207         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/glob.h
208 endif
209 ifneq ($(strip $(UCLIBC_HAS_GNU_GETOPT)),y)
210         # Remove getopt header since gnu getopt support is disabled.
211         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/getopt.h
212 endif
213 ifneq ($(strip $(HAS_SHADOW)),y)
214         # Remove getopt header since shadow password support is disabled.
215         $(RM) $(PREFIX)$(DEVEL_PREFIX)include/shadow.h
216 endif
217         -@for i in `find  $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
218             chmod 755 $$i; chmod 644 $$i/*.h > /dev/null 2>&1; \
219         done;
220         -find $(PREFIX)$(DEVEL_PREFIX) -name .svn | xargs $(RM) -r;
221         -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1:\2/'` $(PREFIX)$(DEVEL_PREFIX)
222 ifeq ($(strip $(HAVE_SHARED)),y)
223         for i in `find lib/ -type l -name 'lib[a-zA-Z]*.so' | \
224         sed -e 's/lib\///'` ; do \
225                 $(LN) -sf $(RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB)$$i.$(MAJOR_VERSION) \
226                 $(PREFIX)$(DEVEL_PREFIX)lib/$$i; \
227         done;
228 ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
229         $(LN) -sf $(RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB)libthread_db.so.1 \
230                 $(PREFIX)$(DEVEL_PREFIX)lib/libthread_db.so
231 endif
232 #       # If we build shared libraries then the static libs are PIC...
233 #       # Make _pic.a symlinks to make mklibs.py and similar tools happy.
234         for i in `find lib/  -type f -name '*.a' | sed -e 's/lib\///'` ; do \
235                 $(LN) -sf $$i $(PREFIX)$(DEVEL_PREFIX)lib/`echo $$i \
236                         | sed -e 's/\.a$$/_pic.a/'`; \
237         done;
238         # Ugh!!! Remember that libdl.a and libdl_pic.a are different.  Since
239         # libdl is pretty small, and not likely to benefit from mklibs.py and
240         # similar, lets just remove libdl_pic.a and avoid the issue
241         rm -f $(PREFIX)$(DEVEL_PREFIX)lib/libdl_pic.a
242 endif
243
244
245 # Installs run-time libraries
246 install_runtime:
247 ifeq ($(strip $(HAVE_SHARED)),y)
248         $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib
249         $(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
250                 $(PREFIX)$(RUNTIME_PREFIX)lib
251         cp -dRf lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
252         @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
253             set -e; \
254                 $(SHELL_SET_X); \
255             $(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
256                         $(PREFIX)$(RUNTIME_PREFIX)lib; \
257         fi;
258 endif
259
260 .PHONY: utils
261 ifeq ($(strip $(HAVE_SHARED)),y)
262 utils:
263         $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils
264 else
265 utils: dummy
266 endif
267
268 # Installs helper applications, such as 'ldd' and 'ldconfig'
269 install_utils: utils
270         $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils install
271 #ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y)
272 #       @$(MAKE) -C libc/misc/wchar iconv.target
273 #       $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)/usr/bin;
274 #       $(INSTALL) -m 755 libc/misc/wchar/iconv.target $(PREFIX)$(RUNTIME_PREFIX)/usr/bin/iconv
275 #endif
276
277 finished2:
278         $(SECHO)
279         $(SECHO) Finished installing ...
280         $(SECHO)
281
282 else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
283
284 all: menuconfig
285
286 # configuration
287 # ---------------------------------------------------------------------------
288 extra/config/conf:
289         $(MAKE) -C extra/config conf
290
291 extra/config/mconf:
292         $(MAKE) -C extra/config ncurses mconf
293
294 menuconfig: extra/config/mconf
295         $(RM) -r include/bits
296         $(INSTALL) -d include/bits
297         @./extra/config/mconf extra/Configs/Config.in
298
299 config: extra/config/conf
300         $(RM) -r include/bits
301         $(INSTALL) -d include/bits
302         @./extra/config/conf extra/Configs/Config.in
303
304 oldconfig: extra/config/conf
305         $(RM) -r include/bits
306         $(INSTALL) -d include/bits
307         @./extra/config/conf -o extra/Configs/Config.in
308
309 randconfig: extra/config/conf
310         $(RM) -r include/bits
311         $(INSTALL) -d include/bits
312         @./extra/config/conf -r extra/Configs/Config.in
313
314 allyesconfig: extra/config/conf
315         $(RM) -r include/bits
316         $(INSTALL) -d include/bits
317         @./extra/config/conf -y extra/Configs/Config.in
318         sed -i -e "s/^DODEBUG=.*/# DODEBUG is not set/" .config
319         sed -i -e "s/^DOASSERTS=.*/# DOASSERTS is not set/" .config
320         sed -i -e "s/^SUPPORT_LD_DEBUG_EARLY=.*/# SUPPORT_LD_DEBUG_EARLY is not set/" .config
321         sed -i -e "s/^SUPPORT_LD_DEBUG=.*/# SUPPORT_LD_DEBUG is not set/" .config
322         sed -i -e "s/^UCLIBC_MJN3_ONLY=.*/# UCLIBC_MJN3_ONLY is not set/" .config
323         @./extra/config/conf -o extra/Configs/Config.in
324
325 allnoconfig: extra/config/conf
326         $(RM) -r include/bits
327         $(INSTALL) -d include/bits
328         @./extra/config/conf -n extra/Configs/Config.in
329
330 defconfig: extra/config/conf
331         $(RM) -r include/bits
332         $(INSTALL) -d include/bits
333         @./extra/config/conf -d extra/Configs/Config.in
334
335 clean:
336         - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec $(RM) {} \;
337         @$(RM) -r tmp lib include/bits libc/tmp _install
338         $(RM) libc/obj.* headers
339         $(MAKE) -C test clean
340         $(MAKE) -C ldso clean
341         $(MAKE) -C libc/misc/internals clean
342         $(MAKE) -C libc/misc/wchar clean
343         $(MAKE) -C libc/unistd clean
344         $(MAKE) -C libc/sysdeps/linux/common clean
345         $(MAKE) -C extra/locale clean
346         $(MAKE) -C utils clean
347         @set -e; \
348         for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
349                 $(RM) include/sys/$$i; \
350         done; \
351         if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
352                 for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
353                         $(RM) include/sys/$$i; \
354                 done; \
355         fi;
356         @$(RM) include/linux include/asm*
357         @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then              \
358             $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean;         \
359         fi;
360
361 distclean: clean
362         $(RM) .config .config.old .config.cmd
363         $(MAKE) -C extra clean
364
365 release: distclean
366         cd ..;                                  \
367         $(RM) -r uClibc-$(VERSION);             \
368         cp -dRf uClibc uClibc-$(VERSION);       \
369         find uClibc-$(VERSION)/ -type f         \
370             -name .\#* -exec $(RM) -r {} \; ;   \
371         find uClibc-$(VERSION)/ -type d         \
372             -name .svn -exec $(RM) -r {} \; ;   \
373                                                 \
374         tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/;
375
376 endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
377
378 check:
379         $(MAKE) -C test
380
381 .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig