1 # Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB. If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
20 # Master Makefile for the GNU C library
23 This makefile requires GNU Make.
27 # This is the default target; it makes everything except the tests.
33 autoconf
$(ACFLAGS
) $< > $@.new
36 test ! -d CVS || cvs commit
-m
'Regenerated: autoconf $(ACFLAGS) $<' $@
39 configure
: configure.in aclocal.m4
; $(autoconf-it
)
40 %/configure
: %/configure.in aclocal.m4
; $(autoconf-it
)
44 ifndef avoid-generated
45 -include $(objpfx
)sysd-dirs
50 sysdep-subdirs
:= $(subst $(\n), ,$(sysdep-subdirs
))
53 # These are the subdirectories containing the library source.
54 subdirs
= csu assert ctype db locale intl catgets math setjmp signal stdlib \
55 stdio-common
$(stdio
) malloc string wcsmbs time dirent grp pwd \
56 posix io termios resource misc login socket sysvipc gmon gnulib \
57 wctype manual shadow md5-crypt nss
$(sysdep-subdirs
) po argp \
58 $(add-ons
) $(binfmt-subdir
)
59 export subdirs
:= $(subdirs
) # Benign, useless in GNU make before 3.63.
61 # The mach and hurd subdirectories have many generated header files which
62 # much of the rest of the library depends on, so it is best to build them
63 # first (and mach before hurd, at that). The before-compile additions in
64 # sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
65 # not to exist when making in other directories, but it will be slower that
66 # way with more somewhat expensive `make' invocations.
67 subdirs
:= $(filter mach
,$(subdirs
)) $(filter hurd
,$(subdirs
)) \
68 $(filter-out mach hurd
,$(subdirs
))
70 # All initialization source files.
71 +subdir_inits
:= $(wildcard $(foreach dir,$(subdirs
),$(dir)/init-
$(dir).c
))
72 # All subdirectories containing initialization source files.
73 +init_subdirs
:= $(patsubst %/,%,$(dir $(+subdir_inits
)))
76 # These are the targets that are made by making them in each subdirectory.
77 +subdir_targets
:= subdir_lib objects objs others subdir_mostlyclean \
78 subdir_clean subdir_distclean subdir_realclean \
79 tests subdir_lint.out \
81 subdir_echo-headers subdir_echo-distinfo \
83 $(addprefix install-
, no-libc.a bin lib data headers others
)
85 headers
:= errno.h sys
/errno.h bits
/errno.h limits.h values.h \
86 features.h gnu-versions.h bits
/libc-lock.h bits
/xopen_lim.h
87 aux
= sysdep
$(libc-init
) version
88 before-compile
+= $(objpfx
)version-info.h
90 echo-headers
: subdir_echo-headers
92 # The headers are in the include directory.
94 vpath
%.h
$(subdir-dirs
)
97 install-others
= $(inst_includedir
)/gnu
/stubs.h
98 install-bin
= glibcbug
100 ifeq (yes
,$(build-shared
))
101 install-others
+= $(inst_includedir
)/gnu
/lib-names.h
107 libc-init
= munch-init
108 $(objpfx
)munch-init.c
: munch.awk munch-tmpl.c
$(+subdir_inits
)
109 awk
-f
$< subdirs
='$(+init_subdirs)' $(word 2,$^
) > $@
-t
111 generated
:= $(generated
) munch-init.c
117 # Install from subdirectories too.
118 install: subdir_install
120 # Create linkfs for shared libraries using the `ldconfig' program is possible.
121 # Ignore the error if we cannot update /etc/ld.so.cache.
122 ifeq (no
,$(cross-compiling
))
123 ifeq (yes
,$(build-shared
))
125 -test ! -x
$(common-objpfx
)elf
/ldconfig || \
126 $(common-objpfx
)elf
/ldconfig
-d
$(inst_slibdir
) $(inst_libdir
)
130 # Build subdirectory lib objects.
131 lib-noranlib
: subdir_lib
133 ifeq (yes
,$(build-shared
))
134 # Build the shared object from the PIC object library.
135 lib
: $(common-objpfx
)libc.so
138 all-Subdirs-files
= $(wildcard $(addsuffix /Subdirs
, $(config-sysdirs
)))
139 $(objpfx
)sysd-dirs
: $(+sysdir_pfx
)config.make
$(all-Subdirs-files
)
140 (echo
define sysdep-subdirs
; \
141 sed
's/#.*$$//' $(all-Subdirs-files
) /dev
/null
; \
145 all-Banner-files
= $(wildcard $(addsuffix /Banner
, $(subdirs
)))
146 $(objpfx
)version-info.h
: $(+sysdir_pfx
)config.make
$(all-Banner-files
)
147 (case
$(config-os
) in \
148 linux
*) version
=`(echo -e "#include <linux/version.h>\nUTS_RELEASE"\
150 sed -e 's/"\([^"]*\)".*/\1/p' -e d) 2>/dev/null`;\
151 if
[ -z
"$$version" ]; then \
152 if
[ -r
/proc
/version
]; then \
153 version
=`sed 's/.*version \([^ ]*\) .*/>>\1<</' \
156 version
=`uname -r`; \
159 echo
-n
"\"Compiled on a Linux $$version system "; \
160 echo
"on `date +%Y/%m/%d`.\\n\"" ;; \
163 files
="$(all-Banner-files)"; \
164 if
test -n
"$$files"; then \
165 echo
"\"Available extensions:"; \
166 sed
-e
'/^#/d' -e
's/^[[:space:]]*/ /' $$files; \
170 generated
+= version-info.h
172 version.c-objects
:= $(addprefix $(objpfx
)version
,$(object-suffixes
))
173 $(version.c-objects
): $(objpfx
)version-info.h
175 # Makerules creates a file `stub-$(subdir)' for each subdirectory, which
176 # contains `#define __stub_FUNCTION' for each function which is a stub.
177 # Here we paste all of these together into <gnu/stubs.h>.
179 subdir-stubs
:= $(foreach dir,$(subdirs
),$(common-objpfx
)stub-
$(dir))
181 # Since stubs.h is never needed when building the library, we simplify the
182 # hairy installation process by producing it in place only as the last part
183 # of the top-level `make install'. It depends on subdir_install, which
184 # iterates over all the subdirs; subdir_install in each subdir depends on
185 # the subdir's stubs file. Having more direct dependencies would result in
186 # extra iterations over the list for subdirs and many recursive makes.
187 $(inst_includedir
)/gnu
/stubs.h
: subdir_install
188 $(make-target-directory
)
189 @
rm -f
$(objpfx
)stubs.h
190 (echo
'/* This file is automatically generated.';\
191 echo
' It defines a symbol `__stub_FUNCTION'\'' for each function';\
192 echo
' in the C library which is a stub, meaning it will fail';\
193 echo
' every time called, usually setting errno to ENOSYS. */';\
194 sort $(subdir-stubs
)) > $(objpfx
)stubs.h
195 if
test -r
$@
&& cmp
-s
$(objpfx
)stubs.h
$@
; \
196 then echo
'stubs.h unchanged'; \
197 else $(INSTALL_DATA
) $(objpfx
)stubs.h
$@
; fi
198 rm -f
$(objpfx
)stubs.h
200 ifeq (yes
,$(build-shared
))
202 $(inst_includedir
)/gnu
/lib-names.h
: $(common-objpfx
)gnu
/lib-names.h
203 $(make-target-directory
)
204 if
test -r
$@
&& cmp
-s
$< $@
; \
205 then echo
'gnu/lib-names.h unchanged'; \
206 else $(INSTALL_DATA
) $< $@
; fi
209 # The `glibcbug' script contains the version number and it shall be rebuild
210 # whenever this changes or the `glibcbug.in' file.
211 $(objpfx
)glibcbug
: $(common-objpfx
)config.status glibcbug.in
212 cd
$(<D
); CONFIG_FILES
=$(@F
) CONFIG_HEADERS
= $(SHELL
) $(<F
)
214 # This makes the Info or DVI file of the documentation from the Texinfo source.
217 $(MAKE
) $(PARALLELMFLAGS
) -C manual
$@
219 # This makes all the subdirectory targets.
221 # For each target, make it depend on DIR/target for each subdirectory DIR.
222 $(+subdir_targets
): %: $(addsuffix /%,$(subdirs
))
224 # Compute a list of all those targets.
225 all-subdirs-targets
:= $(foreach dir,$(subdirs
),\
226 $(addprefix $(dir)/,$(+subdir_targets
)))
228 # The action for each of those is to cd into the directory and make the
230 $(all-subdirs-targets
):
231 $(MAKE
) $(PARALLELMFLAGS
) -C
$(@D
) $(@F
)
233 .PHONY
: $(+subdir_targets
) $(all-subdirs-targets
)
235 # Targets to clean things up to various degrees.
237 .PHONY
: clean realclean distclean distclean-1 parent-clean parent-mostlyclean
239 # Subroutines of all cleaning targets.
240 parent-mostlyclean
: common-mostlyclean
# common-mostlyclean is in Makerules.
241 -rm -f
$(foreach o
,$(object-suffixes
),\
242 $(common-objpfx
)$(patsubst %,$(libtype
$o),c
)) \
243 $(addprefix $(objpfx
),$(install-lib
))
244 parent-clean
: parent-mostlyclean common-clean
245 -rm -f
$(addprefix $(common-objpfx
),$(common-generated
))
246 -rm -f
$(addprefix $(objpfx
),sysd-Makefile sysd-dirs sysd-rules
)
249 # This is done this way rather than having `subdir_clean' be a
250 # dependency of this target so that libc.a will be removed before the
251 # subdirectories are dealt with and so they won't try to remove object
252 # files from it when it's going to be removed anyway.
253 @
$(MAKE
) subdir_clean no_deps
=t
254 mostlyclean: parent-mostlyclean
255 @
$(MAKE
) subdir_mostlyclean no_deps
=t
257 # The realclean target is just like distclean for the parent, but we want
258 # the subdirs to know the difference in case they care.
259 realclean distclean: parent-clean
260 # This is done this way rather than having `subdir_distclean' be a
261 # dependency of this target so that libc.a will be removed before the
262 # subdirectories are dealt with and so they won't try to remove object
263 # files from it when it's going to be removed anyway.
264 @
$(MAKE
) distclean-1 no_deps
=t distclean-1
=$@ avoid-generated
=yes
266 # Subroutine of distclean and realclean.
267 distclean-1
: subdir_
$(distclean-1
)
268 -rm -f
$(config-generated
)
269 -rm -f
$(addprefix $(objpfx
),config.status config.cache config.log
)
270 -rm -f
$(addprefix $(objpfx
),config.make config-name.h config.h
)
272 -rm -f
$(objpfx
)Makefile
274 -rm -f
$(sysdep-
$(distclean-1
))
277 echo_subdirs
:;@echo
'$(subdirs)'
279 .PHONY
: echo-distinfo parent_echo-distinfo
280 echo-distinfo
: parent_echo-distinfo subdir_echo-distinfo
281 parent_echo-distinfo
:
282 @echo
$(addprefix +header
+,$(headers
)) \
283 $(addprefix +nodist
+,$(generated
))
289 # Run a test on the header files we use.
290 parent-tests
: $(objpfx
)isomac
291 $(dir $<)$(notdir $<) '$(CC)' '-Iinclude $(+sysdep-includes)' > $<.out
293 $(objpfx
)isomac
: isomac.c
296 # Make the distribution tarfile.
298 distribute
:= README INSTALL FAQ NOTES NEWS PROJECTS BUGS \
299 COPYING.LIB COPYING ChangeLog ChangeLog.
[0-9] \
300 Makefile Makeconfig Makerules Rules Make-dist MakeTAGS \
301 extra-lib.mk o-iterator.mk isomac.c \
302 libc.map mkinstalldirs move-if-change install-sh \
303 configure configure.in aclocal.m4 config.sub config.guess\
304 config.h.in config.make.in config-name.in Makefile.in \
305 autolock.sh rellns-sh munch-tmpl.c munch.awk interp.c \
306 sysdep.h set-hooks.h libc-symbols.h version.h shlib-versions \
307 rpm
/Makefile rpm
/template rpm
/rpmrc glibcbug.in
309 distribute
:= $(strip $(distribute
))
310 generated
:= $(generated
) stubs.h version-info.h
312 README
: README.template version.h
; # Make-dist should update README.
316 makeinfo --no-validate
--no-warn
--no-headers
$< -o
$@
319 INSTALL
: manual
/maint.texi
; $(format-me
)
320 NOTES
: manual
/creature.texi
; $(format-me
)
321 manual
/dir-add.texi manual
/dir-add.
info: FORCE
322 $(MAKE
) $(PARALLELMFLAGS
) -C
$(@D
) $(@F
)
325 rpm
/%: subdir_distinfo
326 $(MAKE
) $(PARALLELMFLAGS
) -C
$(@D
) subdirs
='$(subdirs)' $(@F
)
328 # This is a special goal for people making binary distributions. Normally
329 # everybody uses the DES based crypt library but for the distribution we
330 # need the only-MD5 based one as well.
331 md5-crypt
/libmd5crypt
:
332 $(MAKE
) $(PARALLELMFLAGS
) -C
$(@D
) $(@F
)