Mon Dec 18 13:40:37 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
[glibc.git] / MakeTAGS
blob96dc59e587eb4a46f7c0feebef436c190db1a451
1 # Make the TAGS files.
3 # Copyright (C) 1992, 1994, 1995 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.
22 TAGS:
24 ifdef subdir
25 .. := ../
26 endif
28 include $(..)Makeconfig
30 ifndef tags_sources
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)
37 else    # Not ctype.
38 tags_sources = $(all-sources) $(all-headers) $(all-dist)
39 endif   # ctype
40 endif   # No tags_sources
42 sysdep-dirs := $(addprefix $(sysdep_dir)/,$(sysdirs))
44 ifndef sysdep_dirs
45 # Find all sysdep directories.
46 sysdep_dirs := $(shell find $(..)sysdeps -type d \
47                                          ! -name RCS ! -name CVS -print)
48 endif
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 := $(objdir) \
53             $(sysdep-dirs) \
54             $(source_dirs) \
55             $(filter-out $(sysdep-dirs),$(sysdep_dirs))
57 vpath %.h $(all-dirs)
58 vpath %.c $(all-dirs)
59 vpath %.S $(all-dirs)
60 vpath %.s $(all-dirs)
62 # Find all the subdirs there are, but putting the ones
63 # we are configured to use first and preserving their order.
64 ifndef subdir
65 subdirs := $(subdirs) \
66            $(filter-out $(subdirs),\
67                         $(shell sed -e 's/\#.*$$//' \
68                                     $(wildcard $(addsuffix /Subdirs,\
69                                                            $(all-dirs)))\
70                                     /dev/null))
71 all-dist = $(foreach Dist,$(wildcard $(all-dirs:%=%/Dist)),\
72                      $(addprefix $(Dist:%/Dist=%)/,\
73                                  $(filter %.c %.h %.S %.s,\
74                                           $(shell cat $(Dist)))))
75 tags_sources = $(all-sources) $(all-headers) $(all-dist)
76 else
77 all-dist = $(distribute)
78 endif
80 sources += $(filter %.c %.s %.S,$(all-dist))
81 headers += $(filter %.h,$(all-dist))
82 all-dist := $(filter-out %.h %.c %.s %.S,$(all-dist))
84 # All different versions of $(sources), preserving the configured sysdep
85 # directory order.
86 all-sources = $(shell find $(all-dirs) -maxdepth 1 \( -name fnord \
87                            $(foreach file,$(sort $(sources) $(sources:.c=.S) \
88                                                  $(sources:.c=.s)),\
89                                      -o -name $(file)) \
90                            \) -print)
92 all-headers = $(shell find $(all-dirs) -maxdepth 1 \( -name fnord \
93                            $(foreach file,$(headers),-o -name $(file)) \
94                            \) -print)
96 tags_sources := $(strip $(tags_sources))
98 TAGS: $(tags_sources)
99 ifdef subdir
100 ifdef tags_sources
101         $(ETAGS) -o $@ $^
102 else
103 # No sources.  Create a dummy file. 
104         touch $@
105 endif # tags_sources
106 else # parent
107 TAGS: subdir_TAGS
108 # Note that this uses the -i switch, and thus requires v19 etags.
109         $(ETAGS) -o $@ \
110                  $(subdirs:%=-i %/TAGS) \
111                  $(filter-out subdir_TAGS,$^)
113 .PHONY: subdir_TAGS $(subdirs:%=%/TAGS)
114 subdir_TAGS: $(subdirs:%=%/TAGS)
115 $(subdirs:%=%/TAGS):
116         $(MAKE) -C $(@D) no_deps=t $(@F)
118 endif # subdir