3 # Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1997 Free Software Foundation
5 # This file is part of the libiberty library.
6 # Libiberty is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Library General Public
8 # License as published by the Free Software Foundation; either
9 # version 2 of the License, or (at your option) any later version.
11 # Libiberty 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 libiberty; see the file COPYING.LIB. If not,
18 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
22 # This file was written, and is maintained by K. Richard Pixley
26 # Makefile for libiberty directory
33 exec_prefix = $(prefix)
34 bindir = $(exec_prefix)/bin
35 libdir = $(exec_prefix)/lib
37 datadir = $(prefix)/share
39 mandir = $(prefix)/man
40 man1dir = $(mandir)/man1
41 man2dir = $(mandir)/man2
42 man3dir = $(mandir)/man3
43 man4dir = $(mandir)/man4
44 man5dir = $(mandir)/man5
45 man6dir = $(mandir)/man6
46 man7dir = $(mandir)/man7
47 man8dir = $(mandir)/man8
48 man9dir = $(mandir)/man9
49 infodir = $(prefix)/info
50 includedir = $(prefix)/include
54 # Multilib support variables.
63 INSTALL_PROGRAM
= $(INSTALL
)
64 INSTALL_DATA
= $(INSTALL
)
80 TARGETLIB
= libiberty.a
83 NEEDED_LIST
= lneeded-list
85 # HOST_OFILES contains the list of objects that should be in the
86 # library (in addition to the REQUIRED_OFILES and EXTRA_OFILES).
87 # A configuration may override this with a fixed list a object files
88 # names (hard to maintain), or some other way to generate a list.
89 HOST_OFILES
=`cat needed-list`
91 # Extra targets that the top-level target depends on.
92 # Specifically, what needs to be made before HOST_OFILES can be used.
93 # Can be empty if HOST_OFILES is just a list of file names.
96 # A configuration can specify extra .o files that should be included,
97 # even if they are in libc. (Perhaps the libc version is buggy.)
100 # Flags to pass to a recursive make.
103 "AR_FLAGS=$(AR_FLAGS)" \
106 "LIBCFLAGS=$(LIBCFLAGS)" \
107 "EXTRA_OFILES=$(EXTRA_OFILES)" \
108 "HDEFINES=$(HDEFINES)" \
109 "INSTALL=$(INSTALL)" \
110 "INSTALL_DATA=$(INSTALL_DATA)" \
111 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
112 "LDFLAGS=$(LDFLAGS)" \
113 "LOADLIBES=$(LOADLIBES)" \
114 "PICFLAG=$(PICFLAG)" \
118 all: stamp-picdir
$(TARGETLIB
) required-list
119 @if
[ "$(RULE1)" != "not-used" ]; then \
120 $(MULTIDO
) $(FLAGS_TO_PASS
) multi-do DO
=all; \
124 .PHONY
: check installcheck
128 #### Host, target, and site specific Makefile fragments come in here.
131 INCDIR
=$(srcdir)/$(MULTISRCTOP
)..
/include
133 COMPILE.c
= $(CC
) -c
$(LIBCFLAGS
) -I.
-I
$(INCDIR
) $(HDEFINES
)
135 test -z
"$(PICFLAG)" || \
136 $(COMPILE.c
) $(PICFLAG
) $< -o pic
/$@
139 # The default target just invokes make recursively.
140 # However, the automatic configuration (in config/mh_default).
141 # first causes it to figure out the objects missing in libc.
142 info install-info clean-info
dvi:
144 # Include files that are in this directory.
147 # NOTE: If you add new files to the library, add them to this list
148 # (alphabetical), and add them to REQUIRED_OFILES or 'functions.def'.
149 CFILES
= asprintf.c alloca.c argv.c atexit.c
basename.c bcmp.c bcopy.c bzero.c \
150 choose-temp.c clock.c concat.c cplus-dem.c fdmatch.c fnmatch.c \
151 getcwd.c getopt.c getopt1.c getpagesize.c getruntime.c \
152 floatformat.c hex.c index.c insque.c \
153 memchr.c memcmp.c memcpy.c memmove.c memset.c objalloc.c \
154 obstack.c pexecute.c random.c rename.c rindex.c sigsetmask.c spaces.c \
155 strcasecmp.c strncasecmp.c \
156 strchr.c strdup.c strerror.c strrchr.c strsignal.c \
157 strstr.c strtod.c strtol.c strtoul.c tmpnam.c \
158 vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c \
159 xatexit.c xexit.c xmalloc.c xstrdup.c xstrerror.c
160 # These are always included in the library.
161 REQUIRED_OFILES
= argv.o
basename.o choose-temp.o concat.o cplus-dem.o \
162 fdmatch.o fnmatch.o getopt.o getopt1.o getruntime.o hex.o \
163 floatformat.o objalloc.o obstack.o pexecute.o spaces.o strerror.o \
164 strsignal.o xatexit.o xexit.o xmalloc.o xstrdup.o xstrerror.o
166 # Do we want/need any config overrides?
169 STAGESTUFF
= $(TARGETLIB
) *.o
171 INSTALL_DEST
= libdir
172 install: install_to_
$(INSTALL_DEST
)
174 install_to_libdir
: all
175 $(INSTALL_DATA
) $(TARGETLIB
) $(libdir)$(MULTISUBDIR
)/$(TARGETLIB
).n
176 ( cd
$(libdir)$(MULTISUBDIR
) ; $(RANLIB
) $(TARGETLIB
).n
)
177 mv
-f
$(libdir)$(MULTISUBDIR
)/$(TARGETLIB
).n
$(libdir)$(MULTISUBDIR
)/$(TARGETLIB
)
178 @
$(MULTIDO
) $(FLAGS_TO_PASS
) multi-do DO
=install
180 install_to_tooldir
: all
181 $(INSTALL_DATA
) $(TARGETLIB
) $(tooldir
)/lib
$(MULTISUBDIR
)/$(TARGETLIB
).n
182 ( cd
$(tooldir
)/lib
$(MULTISUBDIR
) ; $(RANLIB
) $(TARGETLIB
).n
)
183 mv
-f
$(tooldir
)/lib
$(MULTISUBDIR
)/$(TARGETLIB
).n
$(tooldir
)/lib
$(MULTISUBDIR
)/$(TARGETLIB
)
184 @
$(MULTIDO
) $(FLAGS_TO_PASS
) multi-do DO
=install
186 # The default configuration adds to libiberty all those functions that are
187 # missing in libc. More precisely, it includes whatever $(CC) fails to find.
188 # Then a sed+awk combination translates the ld error messages into
189 # a list of .o files.
191 stamp-needed
: stamp-picdir
$(NEEDED_LIST
)
192 cp
$(NEEDED_LIST
) needed-tmp
193 $(SHELL
) $(srcdir)/$(MULTISRCTOP
)..
/move-if-change needed-tmp needed-list
196 needed-list
: stamp-needed
; @true
198 lneeded-list
: $(EXTRA_OFILES
) needed.awk errors
201 for i in
`awk -f needed.awk <errors` $(EXTRA_OFILES
) ; do \
208 *alloca.o
*) f
="$$f xmalloc.o xexit.o" ;; \
210 echo
$$f >>lneeded-list
212 # Generate an awk script that looks for functions in functions.def
214 needed.awk
: $(srcdir)/functions.def Makefile
215 echo
"# !Automatically generated from $(srcdir)/functions.def"\
216 "- DO NOT EDIT!" >needed.awk
217 grep
'^DEF(' < $(srcdir)/functions.def \
218 | sed
-e
'/DEF/s|DEF.\([^,]*\).*|/\1/ { printf "\1.o " }|' \
221 stamp-config
: $(CONFIG_H
)
222 cp
$(CONFIG_H
) config.tmp
223 $(SHELL
) $(srcdir)/$(MULTISRCTOP
)..
/move-if-change config.tmp config.h
226 config.h
: stamp-config
; @true
228 lconfig.h
: needed2.awk errors
229 echo
"/* !Automatically generated from $(srcdir)/functions.def"\
230 "- DO NOT EDIT! */" >lconfig.h
231 awk
-f needed2.awk
<errors
>>lconfig.h
233 # Generate an awk script that looks for variables in functions.def
235 needed2.awk
: $(srcdir)/functions.def Makefile
236 echo
"# !Automatically generated from $(srcdir)/functions.def"\
237 "- DO NOT EDIT!" >needed2.awk
238 grep
'^DEFVAR(' < $(srcdir)/functions.def \
239 | sed
-e
'/DEFVAR/s|DEFVAR.\([^,]*\).*|/\1/ { printf "#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \
241 grep
'^DEFFUNC(' < $(srcdir)/functions.def \
242 | sed
-e
'/DEFFUNC/s|DEFFUNC.\([^,]*\).*|/\1/ { printf "#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \
245 dummy.o
: $(srcdir)/dummy.c
$(srcdir)/functions.def
246 $(CC
) -c
$(CFLAGS
) -I.
-I
$(INCDIR
) $(HDEFINES
) $(srcdir)/dummy.c
2>/dev
/null
248 errors
: dummy.o
$(EXTRA_OFILES
)
249 -($(ERRORS_CC
) -o dummy
$(CFLAGS
) $(LDFLAGS
) $(ERRORS_LDFLAGS
) dummy.o
$(EXTRA_OFILES
) $(LOADLIBES
)) >errors
2>&1 || true
251 # required-list is used when building a shared bfd/opcodes/libiberty library.
252 required-list
: Makefile
253 echo
$(REQUIRED_OFILES
) > required-list
255 $(HOST_OFILES
) $(REQUIRED_OFILES
) : config.h
258 $(RULE1
): $(REQUIRED_OFILES
) $(DO_ALSO
) .always.
259 @
$(MAKE
) RULE1
=not-used RULE2
=$(TARGETLIB
) $(FLAGS_TO_PASS
) \
260 "HOST_OFILES=$(HOST_OFILES)"
262 # Rule invoked by recursive make in $(RULE1).
264 $(RULE2
): $(REQUIRED_OFILES
) $(HOST_OFILES
)
266 $(AR
) $(AR_FLAGS
) $(TARGETLIB
) \
267 $(REQUIRED_OFILES
) $(HOST_OFILES
)
268 $(RANLIB
) $(TARGETLIB
)
271 if
[ -n
"$(PICFLAG)" ] && [ ! -d pic
]; then \
279 .PHONY
: all etags
tags ls
clean stage1 stage2 .always.
283 TAGS
: $(CFILES
) $(HFILES
)
284 etags
`for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done`
286 # The standalone demangler (c++filt) has been moved to binutils.
288 @echo
"The standalone demangler, now named c++filt, is now"
289 @echo
"a part of binutils."
293 @echo Makefile
$(HFILES
) $(CFILES
)
295 # Need to deal with profiled libraries, too.
298 rm -rf
*.o pic core errs \
#* *.E a.out
299 rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-
*
300 rm -f
$(CONFIG_H
) $(NEEDED_LIST
) stamp-picdir
301 @
$(MULTICLEAN
) multi-clean DO
=mostlyclean
303 rm -f
*.a required-list tmpmulti.out
304 @
$(MULTICLEAN
) multi-clean DO
=clean
306 @
$(MULTICLEAN
) multi-clean DO
=distclean
307 rm -f
*~ Makefile config.status alloca-conf.h xhost-mkfrag TAGS multilib.out
308 maintainer-clean
realclean: distclean
312 Makefile
: $(srcdir)/Makefile.in
$(host_makefile_frag
) $(target_makefile_frag
)
313 $(SHELL
) .
/config.status
315 argv.o
: $(INCDIR
)/libiberty.h
316 basename.o
: $(INCDIR
)/libiberty.h
317 concat.o
: $(INCDIR
)/libiberty.h
318 cplus-dem.o
: $(INCDIR
)/demangle.h
319 fdmatch.o
: $(INCDIR
)/libiberty.h
320 fnmatch.o
: $(INCDIR
)/fnmatch.h
321 getopt.o
: $(INCDIR
)/getopt.h
322 getopt1.o
: $(INCDIR
)/getopt.h
323 getruntime.o
: $(INCDIR
)/libiberty.h
324 hex.o
: $(INCDIR
)/libiberty.h
325 floatformat.o
: $(INCDIR
)/floatformat.h
326 objalloc.o
: $(INCDIR
)/objalloc.h
327 obstack.o
: $(INCDIR
)/obstack.h
328 pexecute.o
: $(INCDIR
)/libiberty.h
329 spaces.o
: $(INCDIR
)/libiberty.h
330 strerror.o
: $(INCDIR
)/libiberty.h
331 strsignal.o
: $(INCDIR
)/libiberty.h
332 xatexit.o
: $(INCDIR
)/libiberty.h
333 xexit.o
: $(INCDIR
)/libiberty.h
334 xmalloc.o
: $(INCDIR
)/libiberty.h
335 xstrdup.o
: $(INCDIR
)/libiberty.h
336 xstrerror.o
: $(INCDIR
)/libiberty.h