3 # Copyright (C) 1992, 1994, 1995, 1996 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
6 # The GNU C Library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Library General Public License
8 # as published by the Free Software Foundation; either version 2 of
9 # the License, or (at your option) any later version.
11 # The GNU C Library 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 GNU
14 # Library General Public License for more details.
16 # You should have received a copy of the GNU Library General Public
17 # License along with the GNU C Library; see the file COPYING.LIB. If
18 # not, write to the Free Software Foundation, Inc., 675 Mass Ave,
19 # Cambridge, MA 02139, USA.
21 # Make this the default goal.
28 include $(..)Makeconfig
31 ifeq ($(subdir),ctype)
32 # In most cases, we want the C source files to come before
33 # the header files so tags for optimizing #define's in the
34 # headers won't be put in the tags files, but for ctype,
35 # the functions are just backup for the #define's in the header.
36 tags_sources = $(all-headers) $(all-sources) $(all-dist)
38 tags_sources = $(all-sources) $(all-headers) $(all-dist)
40 endif # No tags_sources
42 sysdep-dirs := $(full-config-subdirs)
45 # Find all sysdep directories.
46 sysdep_dirs := $(shell find $(..)sysdeps -type d \
47 ! -name RCS ! -name CVS -print)
50 # Find all sysdep dirs there are, but putting the ones
51 # we are configured to use first and preserving their order.
52 all-dirs := $(subdir-dirs) \
56 $(filter-out $(sysdep-dirs),$(sysdep_dirs))
58 # Find all the subdirs there are, but putting the ones
59 # we are configured to use first and preserving their order.
61 subdirs := $(subdirs) \
62 $(filter-out $(subdirs),\
63 $(shell sed -e 's/\#.*$$//' \
64 $(wildcard $(addsuffix /Subdirs,\
67 all-dist = $(foreach Dist,$(wildcard $(all-dirs:%=%/Dist)),\
68 $(addprefix $(Dist:%/Dist=%)/,\
69 $(filter %.c %.h %.S %.s,\
70 $(shell cat $(Dist)))))
71 tags_sources = $(all-sources) $(all-headers) $(all-dist)
73 all-dist = $(distribute)
76 # sources and headers must be simply expanded variables
77 sources := $(sources) $(filter %.c %.s %.S,$(all-dist))
78 headers := $(headers) $(filter %.h,$(all-dist))
79 all-dist := $(filter-out %.h %.c %.s %.S,$(all-dist))
81 sources += $(foreach lib,$(extra-libs),$($(lib)-routines:=.c))
83 # All different versions of $(sources), preserving the configured sysdep
85 all-sources = $(wildcard $(sort $(sources) $(sources:.c=.S) $(sources:.c=.s) \
86 $(others:=.c) $(tests:=.c))) \
87 $(foreach dir,$(all-dirs),\
90 $(sort $(sources) $(sources:.c=.S) \
93 all-headers = $(wildcard $(headers)) \
94 $(foreach dir,$(all-dirs),\
95 $(wildcard $(addprefix $(dir)/,$(headers))))
97 tags_sources := $(strip $(tags_sources))
104 # No sources. Create a dummy file.
109 # Note that this uses the -i switch, and thus requires v19 etags.
111 $(subdirs:%=-i %/TAGS) \
112 $(filter-out subdir_TAGS,$^)
114 .PHONY: subdir_TAGS $(subdirs:%=%/TAGS)
115 subdir_TAGS: $(subdirs:%=%/TAGS)
117 $(MAKE) -C $(@D) no_deps=t $(@F)
135 $(XGETTEXT) --keyword=_ --keyword=N_ --add-comments=TRANS --sort-output \
136 --omit-header -n -d - $(XGETTEXTFLAGS-$(@F)) > $@.new $^
140 text-srcs := $(filter %.c %.h %.cc %.C,$(tags_sources))
141 $P/$(domain).pot: $(text-srcs)
148 $P/siglist.pot: $(common-objpfx)stdio-common/siglist.c; $(extract)
150 # Extract all strings from this file; its strings are not marked.
151 # Their surroundings are also not interesting.
152 XGETTEXTFLAGS-siglist.pot = -a --no-location
154 all-pot = $P/libc-top.pot $P/subdirs.pot $P/siglist.pot
157 # Collect all the subdir messages, massaging the file names in comments
158 # to include the subdir name.
159 $P/subdirs.pot: $(subdirs:%=$P/%.pot)
161 (for d in $(subdirs); \
162 do sed "/^#:/s% % $$d/%g" $P/$$d.pot; done) > $@.new
165 # Get $(version) defined.
166 include $(common-objpfx)version.mk
168 # Combine all the messages into the final sorted template translation file.
169 # The following code requires GNU date.
170 $P/libc.pot: $(all-pot)
172 disp='set `date -R`; echo $$6'; \
173 sed -e 's/VERSION/$(version)/' \
174 -e "s/DATE/`date +'%Y-%m-%d %I:%M'$$disp/" \
175 po/header.pot > $@.new
176 $(XGETTEXT) -d - --omit-header -n -s $^ >> $@.new
178 test ! -d CVS || cvs ci -m'Regenerated from source files' $@
180 $(subdirs:%=$P/%.pot): $P/%.pot: FORCE
181 $(MAKE) -C $* no_deps=t ../$@