1 # Copyright (C) 1991,92,93,94,95,96,97,98,99,2000 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 # Rules for making a subdirectory in the GNU C library.
21 # Each subdirectory Makefile defines some variables and includes this.
24 This makefile requires GNU Make.
27 all: # Don't let the default goal come from Makeconfig.
32 Each subdirectory makefile must define the `subdir' variable.
34 # This ` unconfuses emacs.
35 # This is benign and useless in GNU make before 3.63.
36 export subdir := $(subdir)
38 # This is the default target; it makes the library and auxiliary programs.
42 ifeq ($(build-programs),yes)
43 others: $(addprefix $(objpfx),$(extra-objs) \
44 $(install-lib) $(install-bin) \
45 $(install-rootsbin) $(install-sbin))
47 others: $(addprefix $(objpfx),$(extra-objs) \
51 ifneq "$(findstring env,$(origin headers))" ""
55 ifneq "$(findstring env,$(origin generated))" ""
59 ifneq "$(findstring env,$(origin common-generated))" ""
66 subdir_lib: lib-noranlib
68 # Some subdirs need to install a dummy library.
69 # They can use "$(objpfx)libfnord.a: $(dep-dummy-lib); $(make-dummy-lib)".
70 dep-dummy-lib = $(common-objpfx)dummy.o
72 $(AR) cr$(verbose) $@ $<
75 $(common-objpfx)dummy.c:
77 echo 'void __dummy__ (void) { }' > $@
78 common-generated += dummy.o dummy.c
80 # This makes all the auxiliary and test programs.
83 ifeq ($(build-programs),yes)
84 others: $(addprefix $(objpfx),$(others) $(sysdep-others) $(extra-objs))
86 others: $(addprefix $(objpfx),$(extra-objs))
88 ifeq ($(cross-compiling),yes)
89 tests: $(addprefix $(objpfx),$(tests) $(test-srcs))
91 tests: $(tests:%=$(objpfx)%.out)
94 ifeq ($(build-programs),yes)
95 binaries-all = $(others) $(sysdep-others) $(tests) $(test-srcs)
96 binaries-static = $(others-static)
98 binaries-all = $(tests) $(test-srcs)
102 binaries-shared = $(filter-out $(binaries-static), $(binaries-all))
104 ifneq "$(strip $(binaries-shared))" ""
105 $(addprefix $(objpfx),$(binaries-shared)): %: %.o \
106 $(sort $(filter $(common-objpfx)lib%,$(link-libc))) \
107 $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
111 ifneq "$(strip $(binaries-static))" ""
112 $(addprefix $(objpfx),$(binaries-static)): %: %.o \
113 $(sort $(filter $(common-objpfx)lib%,$(link-libc-static))) \
114 $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
118 ifneq "$(strip $(tests) $(test-srcs))" ""
119 # These are the implicit rules for making test outputs
120 # from the test programs and whatever input files are present.
121 $(objpfx)%.out: %.input $(objpfx)%
122 GCONV_PATH=$(common-objpfx)iconvdata \
123 $($*-ENV) $(built-program-cmd) $($*-ARGS) < $(word 1,$^) > $@
124 $(objpfx)%.out: /dev/null $(objpfx)% # Make it 2nd arg for canned sequence.
125 GCONV_PATH=$(common-objpfx)iconvdata \
126 $($*-ENV) $(built-program-cmd) $($*-ARGS) > $@
129 .PHONY: distclean realclean subdir_distclean subdir_realclean \
130 subdir_clean subdir_mostlyclean subdir_testclean
131 subdir_mostlyclean: mostlyclean
133 subdir_distclean: distclean
134 subdir_realclean: realclean
135 subdir_testclean: do-tests-clean
139 .PHONY: subdir_echo-headers
140 subdir_echo-headers: echo-headers
142 .PHONY: subdir_echo-distinfo
143 subdir_echo-distinfo:
144 @echo $(addprefix +header+,$(headers) $(filter %.h,$(distribute))) \
145 $(addprefix +nodist+,$(generated) $(common-generated) $(dont_distribute))
147 # We want to install everything except the library itself, but update all
148 # our portions of the library because the parent make will install it later
149 # (likewise the stubs file).
150 .PHONY: subdir_install
151 subdir_install: install-no-libc.a lib-noranlib stubs
153 .PHONY: subdir_TAGS subdir_dist
157 # Convenient target to update all the generated source files.
159 generated: $(addprefix $(common-objpfx),$(common-generated)) \
160 $(addprefix $(objpfx),$(generated))
162 # Target required by the Hurd to ensure that all the MiG-generated
163 # headers are in place before building a subdirectory.
164 .PHONY: before-compile
165 before-compile: $(before-compile)
167 $(common-objpfx)dummy.o: $(common-objpfx)dummy.c $(before-compile);
170 # There's no good place to put this - here will do.
171 # The dependencies are wrong if it's run from the top level.
172 ifeq ($(filter %posix, $(sysdirs)),)
183 stdio_lim = $(common-objpfx)bits/stdio_lim.h
185 $(stdio_lim:lim.h=%.h) $(stdio_lim:lim.h=%.d): $(stdio_lim:lim.h=%.st); @:
186 $(stdio_lim:h=st): $(..)stdio-common/stdio_lim.h.in $(..)Rules \
187 $(common-objpfx)config.make
188 $(make-target-directory)
189 echo '#include "$(..)posix/bits/posix1_lim.h"' | \
190 SUNPRO_DEPENDENCIES='$(@:st=dT) $@' \
191 $(CC) $(+includes) -E -dM -xc - -o $(@:st=hT)
192 echo '#include "$(..)misc/sys/uio.h"' | \
193 SUNPRO_DEPENDENCIES='$(@:st=dT) $@' \
194 $(CC) $(+includes) -E -dM -xc - | cat - >> $(@:st=hT)
195 ifdef sed-remove-objpfx
196 sed $(sed-remove-objpfx) $(@:st=dT) > $(@:st=dt)
197 cat $(@:st=dt) >> $(@:st=d)
199 cat $(@:st=dT) >> $(@:st=d)
201 fopen_max=`sed -n 's/^#define OPEN_MAX //1p' $(@:st=hT)`; \
202 filename_max=`sed -n 's/^#define PATH_MAX //1p' $(@:st=hT)`; \
203 iov_max=`sed -n 's/^#define UIO_MAXIOV //p' $(@:st=hT)`; \
204 fopen_max=$${fopen_max:-16}; \
205 filename_max=$${filename_max:-1024}; \
206 if [ -z $$iov_max ]; then \
207 define_iov_max="# undef IOV_MAX"; \
209 define_iov_max="# define IOV_MAX $$iov_max"; \
211 sed -e "s/@FOPEN_MAX@/$$fopen_max/" \
212 -e "s/@FILENAME_MAX@/$$filename_max/" \
213 -e "s/@L_tmpnam@/$(L_tmpnam)/" \
214 -e "s/@TMP_MAX@/$(TMP_MAX)/" \
215 -e "s/@L_ctermid@/$(L_ctermid)/" \
216 -e "s/@L_cuserid@/$(L_cuserid)/" \
217 -e "s/@define_IOV_MAX@/$$define_iov_max/" \
219 $(move-if-change) $(@:st=h.new) $(@:st=h)
220 # Remove these last so that they can be examined if something went wrong.
221 rm -f $(@:st=hT) $(@:st=dT) $(@:st=dt)
225 -include $(stdio_lim:h=d)
227 common-generated += bits/stdio_lim.h bits/stdio_lim.d bits/stdio_lim.st