1 # Copyright (C) 1989-2017 Free Software Foundation, Inc.
3 # This file is part of GDB.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Please keep lists in this file sorted alphabetically, with one item per line.
19 # Here are the general guidelines for ordering files and directories:
21 # - Files come before directories.
22 # - The extensions are not taken into account when comparing filenames, except
23 # if the filenames are otherwise equal.
24 # - A filename that is a prefix of another one comes before.
25 # - Underscores and dashes are treated equally, and come before alphanumeric
38 exec_prefix = @exec_prefix@
40 host_alias = @host_alias@
41 target_alias = @target_alias@
42 program_transform_name = @program_transform_name@
45 tooldir = $(libdir)/$(target_alias)
48 localedir = @localedir@
50 man1dir = $(mandir)/man1
51 man2dir = $(mandir)/man2
52 man3dir = $(mandir)/man3
53 man4dir = $(mandir)/man4
54 man5dir = $(mandir)/man5
55 man6dir = $(mandir)/man6
56 man7dir = $(mandir)/man7
57 man8dir = $(mandir)/man8
58 man9dir = $(mandir)/man9
60 datarootdir = @datarootdir@
64 includedir = @includedir@
66 install_sh = @install_sh@
68 # This can be referenced by `LIBINTL' as computed by
69 # ZW_GNU_GETTEXT_SISTER_DIR.
79 INSTALL_PROGRAM = @INSTALL_PROGRAM@
80 INSTALL_SCRIPT = @INSTALL_SCRIPT@
81 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
82 INSTALL_DATA = @INSTALL_DATA@
101 # If you are compiling with GCC, make sure that either 1) You have the
102 # fixed include files where GCC can reach them, or 2) You use the
103 # -traditional flag. Otherwise the ioctl calls in inflow.c
104 # will be incorrectly compiled. The "fixincludes" script in the gcc
105 # distribution will fix your include files up.
108 CXX_DIALECT = @CXX_DIALECT@
110 # Dependency tracking information.
111 DEPMODE = @CCDEPMODE@
113 depcomp = $(SHELL) $(srcdir)/../depcomp
115 # Note that these are overridden by GNU make-specific code below if
116 # GNU make is used. The overrides implement dependency tracking.
117 COMPILE.pre = $(CXX) -x c++ $(CXX_DIALECT)
118 COMPILE.post = -c -o $@
119 COMPILE = $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
122 # Directory containing source files.
125 top_srcdir = @top_srcdir@
129 # This is used to rebuild ada-lex.c from ada-lex.l. If the program is
130 # not defined, but ada-lex.c is present, compilation will continue,
131 # possibly with a warning.
134 YLWRAP = $(srcdir)/../ylwrap
136 # where to find makeinfo, preferably one designed for texinfo-2
137 MAKEINFO = @MAKEINFO@
138 MAKEINFOFLAGS = @MAKEINFOFLAGS@
139 MAKEINFO_EXTRA_FLAGS = @MAKEINFO_EXTRA_FLAGS@
140 MAKEINFO_CMD = $(MAKEINFO) $(MAKEINFOFLAGS) $(MAKEINFO_EXTRA_FLAGS)
142 MAKEHTML = $(MAKEINFO_CMD) --html
145 # Set this up with gcc if you have gnu ld and the loader will print out
146 # line numbers for undefined references.
148 CC_LD = $(CXX) $(CXX_DIALECT)
150 # Where is our "include" directory? Typically $(srcdir)/../include.
151 # This is essentially the header file directory for the library
152 # routines in libiberty.
153 INCLUDE_DIR = $(srcdir)/../include
154 INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
156 # Where is the "-liberty" library? Typically in ../libiberty.
157 LIBIBERTY = ../libiberty/libiberty.a
159 # Where is the BFD library? Typically in ../bfd.
161 BFD = $(BFD_DIR)/libbfd.a
162 BFD_SRC = $(srcdir)/$(BFD_DIR)
163 BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
165 # This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
166 # -I../zlib, unless we were configured with --with-system-zlib, in which
167 # case both are empty.
171 # Where is the decnumber library? Typically in ../libdecnumber.
172 LIBDECNUMBER_DIR = ../libdecnumber
173 LIBDECNUMBER = $(LIBDECNUMBER_DIR)/libdecnumber.a
174 LIBDECNUMBER_SRC = $(srcdir)/$(LIBDECNUMBER_DIR)
175 LIBDECNUMBER_CFLAGS = -I$(LIBDECNUMBER_DIR) -I$(LIBDECNUMBER_SRC)
177 # Where is the READLINE library? Typically in ../readline.
178 READLINE_DIR = ../readline
179 READLINE_SRC = $(srcdir)/$(READLINE_DIR)
180 READLINE = @READLINE@
181 READLINE_DEPS = @READLINE_DEPS@
182 READLINE_CFLAGS = @READLINE_CFLAGS@
184 # Where is expat? This will be empty if expat was not available.
185 LIBEXPAT = @LIBEXPAT@
187 # Where is lzma? This will be empty if lzma was not available.
190 # Where is libbabeltrace? This will be empty if lbabeltrace was not
192 LIBBABELTRACE = @LIBBABELTRACE@
194 # Where is libipt? This will be empty if libipt was not available.
197 # Where is libmpfr? This will be empty if libmpfr was not available.
200 WARN_CFLAGS = @WARN_CFLAGS@
201 WERROR_CFLAGS = @WERROR_CFLAGS@
202 GDB_WARN_CFLAGS = $(WARN_CFLAGS)
203 GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
205 GDB_WARN_CFLAGS_NO_FORMAT = `echo " $(GDB_WARN_CFLAGS) " \
206 | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"`
207 GDB_WARN_CFLAGS_NO_DEFS = `echo " $(GDB_WARN_CFLAGS) " \
208 | sed "s/ -Wold-style-definition / -Wno-old-style-definition /g"`
210 RDYNAMIC = @RDYNAMIC@
212 # Where is the INTL library? Typically in ../intl.
214 INTL_DEPS = @LIBINTL_DEP@
215 INTL_CFLAGS = @INCINTL@
217 # Where is the ICONV library? This will be empty if in libc or not available.
218 LIBICONV = @LIBICONV@
220 # Did the user give us a --with-gdb-datadir option?
221 GDB_DATADIR = @GDB_DATADIR@
223 # Flags to pass to gdb when invoked with "make run".
226 # Helper code from gnulib.
227 GNULIB_BUILDDIR = build-gnulib
228 LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
229 INCGNU = -I$(srcdir)/gnulib/import -I$(GNULIB_BUILDDIR)/import
231 # Generated headers in the gnulib directory. These must be listed
232 # so that they are generated before other files are compiled.
233 GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@
236 # CLI sub directory definitons
248 SUBDIR_CLI_OBS = $(patsubst %.c,%.o,$(SUBDIR_CLI_SRCS))
255 # MI sub directory definitons
276 SUBDIR_MI_OBS = $(patsubst %.c,%.o,$(SUBDIR_MI_SRCS))
283 # TUI sub directory definitions
301 tui/tui-wingeneral.c \
304 SUBDIR_TUI_OBS = $(patsubst %.c,%.o,$(SUBDIR_TUI_SRCS))
308 SUBDIR_TUI_CFLAGS = -DTUI=1
311 # GCC Compile support sub-directory definitions
313 SUBDIR_GCC_COMPILE_SRCS = \
315 compile/compile-c-support.c \
316 compile/compile-c-symbols.c \
317 compile/compile-c-types.c \
318 compile/compile-loc2c.c \
319 compile/compile-object-load.c \
320 compile/compile-object-load.h \
321 compile/compile-object-run.c \
322 compile/compile-object-run.h
324 SUBDIR_GCC_COMPILE_OBS = $(patsubst %.c,%.o,$(filter %.c,$(SUBDIR_GCC_COMPILE_SRCS)))
327 # Guile sub directory definitons for guile support.
329 SUBDIR_GUILE_SRCS = \
332 guile/scm-auto-load.c \
334 guile/scm-breakpoint.c \
337 guile/scm-exception.c \
340 guile/scm-iterator.c \
341 guile/scm-lazy-string.c \
343 guile/scm-objfile.c \
346 guile/scm-pretty-print.c \
347 guile/scm-progspace.c \
348 guile/scm-safe-call.c \
356 SUBDIR_GUILE_OBS = $(patsubst %.c,%.o,$(SUBDIR_GUILE_SRCS))
359 SUBDIR_GUILE_LDFLAGS =
360 SUBDIR_GUILE_CFLAGS =
363 # python sub directory definitons
365 SUBDIR_PYTHON_OBS = \
377 py-finishbreakpoint.o \
388 py-newobjfileevent.o \
409 SUBDIR_PYTHON_SRCS = \
411 python/py-auto-load.c \
413 python/py-bpevent.c \
414 python/py-breakpoint.c \
416 python/py-continueevent.c \
418 python/py-evtregistry.c \
420 python/py-exitedevent.c \
421 python/py-finishbreakpoint.c \
423 python/py-framefilter.c \
424 python/py-function.c \
425 python/py-gdb-readline.c \
426 python/py-inferior.c \
427 python/py-infevents.c \
428 python/py-infthread.c \
429 python/py-instruction.c \
430 python/py-lazy-string.c \
431 python/py-linetable.c \
432 python/py-newobjfileevent.c \
433 python/py-objfile.c \
435 python/py-prettyprint.c \
436 python/py-progspace.c \
438 python/py-record-btrace.c \
439 python/py-record-full.c \
440 python/py-signalevent.c \
441 python/py-stopevent.c \
444 python/py-threadevent.c \
450 python/py-xmethods.c \
454 SUBDIR_PYTHON_LDFLAGS =
455 SUBDIR_PYTHON_CFLAGS =
457 SUBDIR_UNITTESTS_SRCS = \
458 unittests/array-view-selftests.c \
459 unittests/common-utils-selftests.c \
460 unittests/environ-selftests.c \
461 unittests/function-view-selftests.c \
462 unittests/lookup_name_info-selftests.c \
463 unittests/memory-map-selftests.c \
464 unittests/memrange-selftests.c \
465 unittests/offset-type-selftests.c \
466 unittests/optional-selftests.c \
467 unittests/ptid-selftests.c \
468 unittests/rsp-low-selftests.c \
469 unittests/scoped_restore-selftests.c \
470 unittests/xml-utils-selftests.c
472 SUBDIR_UNITTESTS_OBS = $(patsubst %.c,%.o,$(SUBDIR_UNITTESTS_SRCS))
474 # Opcodes currently live in one of two places. Either they are in the
475 # opcode library, typically ../opcodes, or they are in a header file
477 # Where is the "-lopcodes" library, with (some of) the opcode tables and
479 OPCODES_DIR = ../opcodes
480 OPCODES_SRC = $(srcdir)/$(OPCODES_DIR)
481 OPCODES = $(OPCODES_DIR)/libopcodes.a
482 # Where are the other opcode tables which only have header file
484 OP_INCLUDE = $(INCLUDE_DIR)/opcode
485 # Some source files like to use #include "opcodes/file.h"
486 OPCODES_CFLAGS = -I$(OP_INCLUDE) -I$(OPCODES_SRC)/..
488 # The simulator is usually nonexistent; targets that include one
489 # should set this to list all the .o or .a files to be linked in.
492 WIN32LIBS = @WIN32LIBS@
494 # Tcl et al cflags and libraries
496 TCL_CFLAGS = @TCL_INCLUDE@
497 GDBTKLIBS = @GDBTKLIBS@
498 # Extra flags that the GDBTK files need:
499 GDBTK_CFLAGS = @GDBTK_CFLAGS@
502 TK_CFLAGS = @TK_INCLUDE@
504 X11_CFLAGS = @TK_XINCLUDES@
508 WIN32LDAPP = @WIN32LDAPP@
511 GUI_CFLAGS_X = @GUI_CFLAGS_X@
512 IDE_CFLAGS = $(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
514 ALL_TCL_CFLAGS = $(TCL_CFLAGS) $(TK_CFLAGS)
516 # The version of gdbtk we're building. This should be kept
517 # in sync with GDBTK_VERSION and friends in gdbtk.h.
519 GDBTK_LIBRARY = $(datadir)/insight$(GDBTK_VERSION)
521 # Gdbtk requires an absolute path to the source directory or
522 # the testsuite won't run properly.
523 GDBTK_SRC_DIR = @GDBTK_SRC_DIR@
536 SUBDIR_GDBTK_SRCS = \
537 gdbtk/generic/gdbtk.c \
538 gdbtk/generic/gdbtk-bp.c \
539 gdbtk/generic/gdbtk-cmds.c \
540 gdbtk/generic/gdbtk-hooks.c \
541 gdbtk/generic/gdbtk-interp.c \
542 gdbtk/generic/gdbtk-main.c \
543 gdbtk/generic/gdbtk-register.c \
544 gdbtk/generic/gdbtk-stack.c \
545 gdbtk/generic/gdbtk-varobj.c \
546 gdbtk/generic/gdbtk-wrapper.c
548 SUBDIR_GDBTK_DEPS = $(LIBGUI) $(TCL_DEPS) $(TK_DEPS)
549 SUBDIR_GDBTK_LDFLAGS =
550 SUBDIR_GDBTK_CFLAGS = -DGDBTK
552 CONFIG_OBS = @CONFIG_OBS@
553 CONFIG_SRCS = @CONFIG_SRCS@
554 CONFIG_DEPS = @CONFIG_DEPS@
555 CONFIG_LDFLAGS = @CONFIG_LDFLAGS@
556 ENABLE_CFLAGS = @ENABLE_CFLAGS@
557 CONFIG_ALL = @CONFIG_ALL@
558 CONFIG_CLEAN = @CONFIG_CLEAN@
559 CONFIG_INSTALL = @CONFIG_INSTALL@
560 CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
561 HAVE_NATIVE_GCORE_TARGET = @HAVE_NATIVE_GCORE_TARGET@
563 CONFIG_SRC_SUBDIR = arch cli mi compile tui unittests guile
564 CONFIG_DEP_SUBDIR = $(addsuffix /$(DEPDIR),$(CONFIG_SRC_SUBDIR))
566 # -I. for config files.
567 # -I$(srcdir) for gdb internal headers.
568 # -I$(srcdir)/config for more generic config files.
570 # It is also possible that you will need to add -I/usr/include/sys if
571 # your system doesn't have fcntl.h in /usr/include (which is where it
572 # should be according to Posix).
574 GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/common -I$(srcdir)/config \
575 -DLOCALEDIR="\"$(localedir)\"" $(DEFS)
577 # MH_CFLAGS, if defined, has host-dependent CFLAGS from the config directory.
578 GLOBAL_CFLAGS = $(MH_CFLAGS)
580 PROFILE_CFLAGS = @PROFILE_CFLAGS@
582 # These are specifically reserved for setting from the command line
583 # when running make. I.E.: "make CFLAGS=-Wmissing-prototypes".
585 CXXFLAGS = @CXXFLAGS@
587 # Set by configure, for e.g. expat. Python installations are such that
588 # C headers are included using their basename (for example, we #include
589 # <Python.h> rather than, say, <python/Python.h>). Since the file names
590 # are sometimes a little generic, we think that the risk of collision
591 # with other header files is high. If that happens, we try to mitigate
592 # a bit the consequences by putting the Python includes last in the list.
593 INTERNAL_CPPFLAGS = @CPPFLAGS@ @GUILE_CPPFLAGS@ @PYTHON_CPPFLAGS@
595 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
596 INTERNAL_CFLAGS_BASE = \
597 $(CXXFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
598 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) $(ZLIBINC) \
599 $(BFD_CFLAGS) $(INCLUDE_CFLAGS) $(LIBDECNUMBER_CFLAGS) \
600 $(INTL_CFLAGS) $(INCGNU) $(ENABLE_CFLAGS) $(INTERNAL_CPPFLAGS)
601 INTERNAL_WARN_CFLAGS = $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS)
602 INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
604 # LDFLAGS is specifically reserved for setting from the command line
608 # Profiling options need to go here to work.
609 # I think it's perfectly reasonable for a user to set -pg in CFLAGS
610 # and have it work; that's why CFLAGS is here.
611 # PROFILE_CFLAGS is _not_ included, however, because we use monstartup.
613 $(CXXFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) \
614 $(LDFLAGS) $(CONFIG_LDFLAGS)
616 # If your system is missing alloca(), or, more likely, it's there but
617 # it doesn't work, then refer to libiberty.
619 # Libraries and corresponding dependencies for compiling gdb.
620 # XM_CLIBS, defined in *config files, have host-dependent libs.
621 # LIBIBERTY appears twice on purpose.
622 CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(ZLIB) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
623 $(XM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) \
624 @LIBS@ @GUILE_LIBS@ @PYTHON_LIBS@ \
625 $(LIBEXPAT) $(LIBLZMA) $(LIBBABELTRACE) $(LIBIPT) \
626 $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU) $(LIBICONV) $(LIBMPFR)
627 CDEPS = $(XM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) \
628 $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) $(LIBGNU)
630 ADD_FILES = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
631 ADD_DEPS = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
635 LINT = /usr/5bin/lint
636 LINTFLAGS = $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
637 $(BFD_CFLAGS) $(INCLUDE_CFLAGS) \
643 # XML files to build in to GDB.
645 $(srcdir)/features/btrace.dtd \
646 $(srcdir)/features/btrace-conf.dtd \
647 $(srcdir)/features/gdb-target.dtd \
648 $(srcdir)/features/library-list.dtd \
649 $(srcdir)/features/library-list-aix.dtd \
650 $(srcdir)/features/library-list-svr4.dtd \
651 $(srcdir)/features/osdata.dtd \
652 $(srcdir)/features/threads.dtd \
653 $(srcdir)/features/traceframe-info.dtd \
654 $(srcdir)/features/xinclude.dtd
656 # Build the ser-*.o files the host supports. This includes ser-unix.o
657 # for any system that supports a POSIX interface to the serial port.
659 SER_HARDWIRE = @SER_HARDWIRE@
661 # The `remote' debugging target is supported for most architectures,
662 # but not all (e.g. 960)
675 # This is remote-sim.o if a simulator is to be linked in.
678 # Target-dependent object files.
679 TARGET_OBS = @TARGET_OBS@
681 # All target-dependent objects files that require 64-bit CORE_ADDR
682 # (used with --enable-targets=all --enable-64-bit-bfd).
683 ALL_64_TARGET_OBS = \
684 aarch64-fbsd-tdep.o \
685 aarch64-linux-tdep.o \
686 aarch64-newlib-tdep.o \
690 alpha-mdebug-tdep.o \
694 amd64-darwin-tdep.o \
702 amd64-windows-tdep.o \
704 arch/aarch64-insn.o \
710 sparc64-fbsd-tdep.o \
711 sparc64-linux-tdep.o \
712 sparc64-nbsd-tdep.o \
713 sparc64-obsd-tdep.o \
714 sparc64-sol2-tdep.o \
717 # All other target-dependent objects files (used with --enable-targets=all).
721 arch/arm-get-next-pcs.o \
777 microblaze-linux-tdep.o \
784 mn10300-linux-tdep.o \
799 ppc-ravenscar-thread.o \
805 rs6000-lynx178-tdep.o \
824 sparc-ravenscar-thread.o \
832 tilegx-linux-tdep.o \
841 xtensa-linux-tdep.o \
844 # The following native-target dependent variables are defined on
846 NAT_FILE = @NAT_FILE@
847 NATDEPFILES = @NATDEPFILES@
848 NAT_CDEPS = @NAT_CDEPS@
849 LOADLIBES = @LOADLIBES@
850 MH_CFLAGS = @MH_CFLAGS@
851 XM_CLIBS = @XM_CLIBS@
852 NAT_GENERATED_FILES = @NAT_GENERATED_FILES@
853 HAVE_NATIVE_GCORE_HOST = @HAVE_NATIVE_GCORE_HOST@
855 # Native-target dependent makefile fragment comes in here.
858 # End of native-target dependent variables.
862 "exec_prefix=$(exec_prefix)" \
863 "infodir=$(infodir)" \
864 "datarootdir=$(datarootdir)" \
866 "htmldir=$(htmldir)" \
870 "datadir=$(datadir)" \
871 "includedir=$(includedir)" \
872 "against=$(against)" \
873 "DESTDIR=$(DESTDIR)" \
875 "AR_FLAGS=$(AR_FLAGS)" \
879 "CXX_DIALECT=$(CXX_DIALECT)" \
880 "CXXFLAGS=$(CXXFLAGS)" \
881 "DLLTOOL=$(DLLTOOL)" \
882 "LDFLAGS=$(LDFLAGS)" \
884 "MAKEINFO=$(MAKEINFO)" \
885 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
886 "MAKEINFO_EXTRA_FLAGS=$(MAKEINFO_EXTRA_FLAGS)" \
887 "MAKEHTML=$(MAKEHTML)" \
888 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
889 "INSTALL=$(INSTALL)" \
890 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
891 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
892 "INSTALL_DATA=$(INSTALL_DATA)" \
893 "RUNTEST=$(RUNTEST)" \
894 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
896 # Flags that we pass when building the testsuite.
898 # empty for native, $(target_alias)/ for cross
899 target_subdir = @target_subdir@
902 if [ -f $${rootme}/../gcc/xgcc ] ; then \
903 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
904 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/$(target_subdir)newlib/targ-include -idirafter $${rootsrc}/../$(target_subdir)newlib/libc/include -nostdinc -B$${rootme}/../$(target_subdir)newlib/; \
906 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
909 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
912 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
917 if [ -f $${rootme}/../gcc/xg++ ] ; then \
918 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
919 echo $${rootme}/../gcc/xg++ -B$${rootme}/../gcc/ -idirafter $${rootme}/$(target_subdir)newlib/targ-include -idirafter $${rootsrc}/../$(target_subdir)newlib/libc/include -nostdinc -B$${rootme}/../$(target_subdir)newlib/; \
921 echo $${rootme}/../gcc/xg++ -B$${rootme}/../gcc/; \
924 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
927 t='$(program_transform_name)'; echo g++ | sed -e '' $$t; \
931 # The use of $$(x_FOR_TARGET) reduces the command line length by not
932 # duplicating the lengthy definition.
933 TARGET_FLAGS_TO_PASS = \
935 "exec_prefix=$(exec_prefix)" \
936 "against=$(against)" \
937 'CC=$$(CC_FOR_TARGET)' \
938 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
940 'CXX=$$(CXX_FOR_TARGET)' \
941 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
942 "CXXFLAGS=$(CXXFLAGS)" \
943 "INSTALL=$(INSTALL)" \
944 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
945 "INSTALL_DATA=$(INSTALL_DATA)" \
946 "MAKEINFO=$(MAKEINFO)" \
947 "MAKEHTML=$(MAKEHTML)" \
948 "RUNTEST=$(RUNTEST)" \
949 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
950 "FORCE_PARALLEL=$(FORCE_PARALLEL)" \
953 # All source files that go into linking GDB.
954 # Links made at configuration time should not be specified here, since
955 # SFILES is used in building the distribution archive.
978 break-catch-syscall.c \
979 break-catch-throw.c \
1013 disasm-selftests.c \
1017 dwarf2-frame-tailcall.c \
1046 gdbarch-selftests.c \
1102 progspace-and-thread.c \
1139 target-descriptions.c \
1163 common/btrace-common.c \
1166 common/common-debug.c \
1167 common/common-exceptions.c \
1168 common/common-regcache.c \
1169 common/common-utils.c \
1173 common/filestuff.c \
1175 common/job-control.c \
1176 common/gdb_tilde_expand.c \
1179 common/print-utils.c \
1182 common/run-time-clock.c \
1185 common/signals-state-save-restore.c \
1187 common/xml-utils.c \
1189 target/waitstatus.c \
1190 $(SUBDIR_GCC_COMPILE_SRCS)
1192 LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
1194 # Header files that need to have srcdir added. Note that in the cases
1195 # where we use a macro like $(gdbcmd_h), things are carefully arranged
1196 # so that each .h file is listed exactly once (M-x tags-search works
1197 # wrong if TAGS has files twice). Because this is tricky to get
1198 # right, it is probably easiest just to list .h files here directly.
1200 HFILES_NO_SRCDIR = \
1206 amd64-darwin-tdep.h \
1207 amd64-linux-tdep.h \
1248 dwarf2-frame-tailcall.h \
1273 gdb_proc_service.h \
1290 hppa-linux-offsets.h \
1293 i386-darwin-tdep.h \
1298 ia64-libunwind-tdep.h \
1351 ppc-ravenscar-thread.h \
1358 progspace-and-thread.h \
1362 ravenscar-thread.h \
1396 sparc-ravenscar-thread.h \
1407 target-descriptions.h \
1437 arch/aarch64-insn.h \
1447 common/common-debug.h \
1448 common/common-defs.h \
1449 common/common-exceptions.h \
1450 common/common-gdbthread.h \
1451 common/common-regcache.h \
1452 common/common-types.h \
1453 common/common-utils.h \
1454 common/job-control.h \
1459 common/gdb_assert.h \
1460 common/gdb_tilde_expand.h \
1461 common/gdb_locale.h \
1462 common/gdb_setjmp.h \
1463 common/gdb_signals.h \
1464 common/gdb_sys_time.h \
1467 common/common-inferior.h \
1468 common/host-defs.h \
1469 common/print-utils.h \
1473 common/run-time-clock.h \
1474 common/signals-state-save-restore.h \
1478 common/x86-xstate.h \
1479 common/xml-utils.h \
1483 config/djgpp/langinfo.h \
1484 config/djgpp/nl_types.h \
1485 config/i386/nm-fbsd.h \
1486 config/i386/nm-i386gnu.h \
1487 config/sparc/nm-sol2.h \
1488 gnulib/import/inttypes.in.h \
1489 gnulib/import/stddef.in.h \
1490 gnulib/import/stdint.in.h \
1491 gnulib/import/str-two-way.h \
1492 gnulib/import/string.in.h \
1493 gnulib/import/extra/snippet/arg-nonnull.h \
1494 gnulib/import/extra/snippet/c++defs.h \
1495 gnulib/import/extra/snippet/warn-on-use.h \
1503 nat/aarch64-linux.h \
1504 nat/aarch64-linux-hw-point.h \
1505 nat/amd64-linux-siginfo.h \
1507 nat/gdb_thread_db.h \
1508 nat/fork-inferior.h \
1509 nat/linux-btrace.h \
1510 nat/linux-namespaces.h \
1512 nat/linux-osdata.h \
1513 nat/linux-personality.h \
1514 nat/linux-ptrace.h \
1515 nat/linux-waitpid.h \
1516 nat/mips-linux-watch.h \
1520 nat/x86-gcc-cpuid.h \
1522 nat/x86-linux-dregs.h \
1524 python/py-events.h \
1525 python/py-stopevent.h \
1527 python/python-internal.h \
1528 regformats/regdef.h \
1532 target/waitstatus.h \
1546 tui/tui-wingeneral.h \
1549 # Header files that already have srcdir in them, or which are in objdir.
1551 HFILES_WITH_SRCDIR = \
1555 # GDB "info" files, which should be included in their entirety
1556 INFOFILES = gdb.info*
1558 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
1559 # default their values the way we do for SER_HARDWIRE; in the future
1560 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
1561 # variables analogous to SER_HARDWIRE which get defaulted in this
1564 DEPFILES = $(TARGET_OBS) $(SER_HARDWIRE) $(NATDEPFILES) \
1565 $(REMOTE_OBS) $(SIM_OBS)
1567 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
1568 # Don't include YYFILES (*.c) because we already include *.y in SFILES,
1569 # and it's more useful to see it in the .y file.
1570 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
1572 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
1574 COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
1591 break-catch-syscall.o \
1592 break-catch-throw.o \
1610 common-exceptions.o \
1632 disasm-selftests.o \
1635 dwarf2-frame-tailcall.o \
1652 filename-seen-cache.o \
1663 gdb_tilde_expand.o \
1670 gdbarch-selftests.o \
1724 progspace-and-thread.o \
1744 signals-state-save-restore.o \
1758 target-descriptions.o \
1785 $(SUBDIR_GCC_COMPILE_OBS)
1789 SUBDIRS = doc @subdirs@ data-directory $(GNULIB_BUILDDIR)
1790 CLEANDIRS = $(SUBDIRS)
1792 # List of subdirectories in the build tree that must exist.
1793 # This is used to force build failures in existing trees when
1794 # a new directory is added.
1795 # The format here is for the `case' shell command.
1796 REQUIRED_SUBDIRS = doc | testsuite | $(GNULIB_BUILDDIR) | data-directory
1798 # For now, shortcut the "configure GDB for fewer languages" stuff.
1822 # Things which need to be built when making a distribution.
1824 DISTSTUFF = $(YYFILES)
1827 # All generated files which can be included by another file.
1836 $(NAT_GENERATED_FILES)
1838 # Flags needed to compile Python code
1839 PYTHON_CFLAGS = @PYTHON_CFLAGS@
1841 all: gdb$(EXEEXT) $(CONFIG_ALL)
1842 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
1844 # Rule for compiling .c files in the top-level gdb directory.
1845 # The order-only dependencies ensure that we create the build subdirectories.
1846 %.o: %.c | $(CONFIG_DEP_SUBDIR)
1850 $(CONFIG_DEP_SUBDIR):
1851 $(SHELL) $(srcdir)/../mkinstalldirs $@
1853 # Rules for compiling .c files in the various source subdirectories.
1854 %.o: ${srcdir}/common/%.c
1858 %.o: $(srcdir)/gdbtk/generic/%.c
1859 $(COMPILE) $(all_gdbtk_cflags) $<
1862 %.o: ${srcdir}/nat/%.c
1866 %.o: $(srcdir)/python/%.c
1867 $(COMPILE) $(PYTHON_CFLAGS) $<
1870 %.o: ${srcdir}/target/%.c
1874 # Specify an explicit rule for gdb/common/agent.c, to avoid a clash with the
1875 # object file generate by gdb/agent.c.
1876 common-agent.o: $(srcdir)/common/agent.c
1877 $(COMPILE) $(srcdir)/common/agent.c
1882 # The check target can not use subdir_do, because subdir_do does not
1883 # use TARGET_FLAGS_TO_PASS.
1885 @if [ -f testsuite/Makefile ]; then \
1886 rootme=`pwd`; export rootme; \
1887 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1889 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
1893 @if [ -f testsuite/Makefile ]; then \
1894 rootme=`pwd`; export rootme; \
1895 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1897 $(MAKE) $(TARGET_FLAGS_TO_PASS) check-perf; \
1901 @if [ -f testsuite/Makefile ]; then \
1902 rootme=`pwd`; export rootme; \
1903 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1905 $(MAKE) $(TARGET_FLAGS_TO_PASS) check-read1; \
1908 check-parallel: force
1909 @if [ -f testsuite/Makefile ]; then \
1910 rootme=`pwd`; export rootme; \
1911 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1913 $(MAKE) $(TARGET_FLAGS_TO_PASS) check-parallel; \
1916 # The idea is to parallelize testing of multilibs, for example:
1917 # make -j3 check//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
1918 # will run 3 concurrent sessions of check, eventually testing all 10
1919 # combinations. GNU make is required for the % pattern to work, as is
1920 # a shell that expands alternations within braces. If GNU make is not
1921 # used, this rule will harmlessly fail to match. Used FORCE_PARALLEL to
1922 # prevent serialized checking due to the passed RUNTESTFLAGS.
1923 # FIXME: use config.status --config not --version, when available.
1925 @if [ -f testsuite/config.status ]; then \
1926 rootme=`pwd`; export rootme; \
1927 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1928 target=`echo "$@" | sed 's,//.*,,'`; \
1929 variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
1930 vardots=`echo "$$variant" | sed 's,/,.,g'`; \
1931 testdir=testsuite.$$vardots; \
1932 if [ ! -f $$testdir/Makefile ] && [ -f testsuite/config.status ]; then \
1933 configargs=`cd testsuite && ./config.status --version | \
1934 sed -n -e 's,"$$,,' -e 's,^ *with options ",,p'`; \
1935 $(SHELL) $(srcdir)/../mkinstalldirs $$testdir && \
1937 eval $(SHELL) "\"\$$rootsrc/testsuite/configure\" $$configargs" \
1938 "\"--srcdir=\$$rootsrc/testsuite\"" \
1940 else :; fi && cd $$testdir && \
1941 $(MAKE) $(TARGET_FLAGS_TO_PASS) \
1942 RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
1943 FORCE_PARALLEL=$(if $(FORCE_PARALLEL),1,$(if $(RUNTESTFLAGS),,1)) \
1947 # The set of headers checked by 'check-headers' by default.
1948 CHECK_HEADERS = $(HFILES_NO_SRCDIR)
1950 # Try to compile each header in isolation, thus ensuring headers are
1953 # Defaults to checking all $HFILES_NO_SRCDIR headers.
1957 # make check-headers CHECK_HEADERS="header.h list.h"
1959 # to check specific headers.
1962 @echo Checking headers.
1963 for i in $(CHECK_HEADERS) ; do \
1964 $(CXX) $(CXX_DIALECT) -x c++-header -c -fsyntax-only \
1965 $(INTERNAL_CFLAGS) -include defs.h $(srcdir)/$$i ; \
1967 .PHONY: check-headers
1969 info install-info clean-info dvi pdf install-pdf html install-html: force
1970 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
1972 # Traditionally "install" depends on "all". But it may be useful
1973 # not to; for example, if the user has made some trivial change to a
1974 # source file and doesn't care about rebuilding or just wants to save the
1975 # time it takes for make to check that all is up to date.
1976 # install-only is intended to address that need.
1978 @$(MAKE) $(FLAGS_TO_PASS) install-only
1980 install-only: $(CONFIG_INSTALL)
1981 transformed_name=`t='$(program_transform_name)'; \
1982 echo gdb | sed -e "$$t"` ; \
1983 if test "x$$transformed_name" = x; then \
1984 transformed_name=gdb ; \
1988 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1989 $(INSTALL_PROGRAM) gdb$(EXEEXT) \
1990 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1991 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
1992 $(INSTALL_DATA) jit-reader.h $(DESTDIR)$(includedir)/gdb/jit-reader.h
1993 if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
1995 transformed_name=`t='$(program_transform_name)'; \
1996 echo gcore | sed -e "$$t"` ; \
1997 if test "x$$transformed_name" = x; then \
1998 transformed_name=gcore ; \
2002 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
2003 $(INSTALL_SCRIPT) gcore \
2004 $(DESTDIR)$(bindir)/$$transformed_name; \
2006 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
2009 $(MAKE) $(FLAGS_TO_PASS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
2010 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
2011 `test -z '$(STRIP)' || \
2012 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install-only
2015 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/guile/gdb
2018 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/python/gdb
2020 uninstall: force $(CONFIG_UNINSTALL)
2021 transformed_name=`t='$(program_transform_name)'; \
2022 echo gdb | sed -e $$t` ; \
2023 if test "x$$transformed_name" = x; then \
2024 transformed_name=gdb ; \
2028 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
2029 $(DESTDIR)$(man1dir)/$$transformed_name.1
2030 if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
2032 transformed_name=`t='$(program_transform_name)'; \
2033 echo gcore | sed -e "$$t"` ; \
2034 if test "x$$transformed_name" = x; then \
2035 transformed_name=gcore ; \
2039 rm -f $(DESTDIR)$(bindir)/$$transformed_name; \
2041 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
2043 # The C++ name parser can be built standalone for testing.
2044 test-cp-name-parser.o: cp-name-parser.c
2045 $(COMPILE) -DTEST_CPNAMES cp-name-parser.c
2048 test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY)
2049 $(CC_LD) $(INTERNAL_LDFLAGS) -o test-cp-name-parser$(EXEEXT) \
2050 test-cp-name-parser.o $(LIBIBERTY)
2052 # We do this by grepping through sources. If that turns out to be too slow,
2053 # maybe we could just require every .o file to have an initialization routine
2054 # of a given name (top.o -> _initialize_top, etc.).
2056 # Formatting conventions: The name of the _initialize_* routines must start
2057 # in column zero, and must not be inside #if.
2059 # Note that the set of files with init functions might change, or the names
2060 # of the functions might change, so this files needs to depend on all the
2061 # object files that will be linked into gdb.
2063 # FIXME: There is a problem with this approach - init.c may force
2064 # unnecessary files to be linked in.
2066 # FIXME: cagney/2002-06-09: gdb/564: gdb/563: Force the order so that
2067 # the first call is to _initialize_gdbtypes (implemented by explicitly
2068 # putting that function's name first in the init.l-tmp file). This is
2069 # a hack to ensure that all the architecture dependant global
2070 # builtin_type_* variables are initialized before anything else
2071 # (per-architecture code is called in the same order that it is
2072 # registered). The ``correct fix'' is to have all the builtin types
2073 # made part of the architecture and initialize them on-demand (using
2074 # gdbarch_data) just like everything else. The catch is that other
2075 # modules still take the address of these builtin types forcing them
2076 # to be variables, sigh!
2078 # NOTE: cagney/2003-03-18: The sed pattern ``s|^\([^ /]...'' is
2079 # anchored on the first column and excludes the ``/'' character so
2080 # that it doesn't add the $(srcdir) prefix to any file that already
2081 # has an absolute path. It turns out that $(DEC)'s True64 make
2082 # automatically adds the $(srcdir) prefixes when it encounters files
2083 # in sub-directories such as cli/ and mi/.
2085 # NOTE: cagney/2004-02-08: The ``case "$$fs" in'' eliminates
2086 # duplicates. Files in the gdb/ directory can end up appearing in
2087 # COMMON_OBS (as a .o file) and CONFIG_SRCS (as a .c file).
2089 INIT_FILES = $(COMMON_OBS) $(TSOBS) $(CONFIG_SRCS) $(SUBDIR_GCC_COMPILE_SRCS)
2090 init.c: $(INIT_FILES)
2092 @rm -f init.c-tmp init.l-tmp
2094 @echo gdbtypes > init.l-tmp
2095 @-LANG=C ; export LANG ; \
2096 LC_ALL=C ; export LC_ALL ; \
2097 echo $(INIT_FILES) | \
2100 -e '/^gdbtypes.[co]$$/d' \
2101 -e '/^init.[co]$$/d' \
2102 -e '/xdr_ld.[co]$$/d' \
2103 -e '/xdr_ptrace.[co]$$/d' \
2104 -e '/xdr_rdb.[co]$$/d' \
2105 -e '/udr.[co]$$/d' \
2106 -e '/udip2soc.[co]$$/d' \
2107 -e '/udi2go32.[co]$$/d' \
2108 -e '/version.[co]$$/d' \
2109 -e '/^[a-z0-9A-Z_]*_[SU].[co]$$/d' \
2110 -e '/[a-z0-9A-Z_]*-exp.tab.[co]$$/d' \
2111 -e 's/-exp\.o$$/-exp.y/' \
2112 -e 's/\.[co]$$/.c/' \
2113 -e 's,signals\.c,common/signals\.c,' \
2114 -e 's|^\([^ /][^ ]*\)|$(srcdir)/\1|g' | \
2116 sed -n -e 's/^_initialize_\([a-z_0-9A-Z]*\).*/\1/p' $$f 2>/dev/null; \
2121 * ) echo $$f ; fs="$$fs $$f";; \
2124 @echo '/* Do not modify this file. */' >>init.c-tmp
2125 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
2126 @echo '#include "defs.h" /* For initialize_file_ftype. */' >>init.c-tmp
2127 @echo 'extern void initialize_all_files(void);' >>init.c-tmp
2128 @sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp
2129 @echo 'void' >>init.c-tmp
2130 @echo 'initialize_all_files (void)' >>init.c-tmp
2131 @echo '{' >>init.c-tmp
2132 @sed -e 's/\(.*\)/ _initialize_\1 ();/' <init.l-tmp >>init.c-tmp
2133 @echo '}' >>init.c-tmp
2135 @mv init.c-tmp init.c
2139 # Create a library of the gdb object files and build GDB by linking
2142 # init.o is very important. It pulls in the rest of GDB.
2143 LIBGDB_OBS = $(COMMON_OBS) $(TSOBS) $(ADD_FILES) init.o
2144 libgdb.a: $(LIBGDB_OBS)
2146 $(AR) q libgdb.a $(LIBGDB_OBS)
2149 # Removing the old gdb first works better if it is running, at least on SunOS.
2150 gdb$(EXEEXT): gdb.o $(LIBGDB_OBS) $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
2152 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
2153 -o gdb$(EXEEXT) gdb.o $(LIBGDB_OBS) \
2154 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
2156 # Convenience rule to handle recursion.
2157 $(LIBGNU) $(GNULIB_H): all-lib
2158 all-lib: $(GNULIB_BUILDDIR)/Makefile
2159 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=$(GNULIB_BUILDDIR) subdir_do
2162 # Convenience rule to handle recursion.
2163 .PHONY: all-data-directory
2164 all-data-directory: data-directory/Makefile
2165 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=data-directory subdir_do
2167 # This is useful when debugging GDB, because some Unix's don't let you run GDB
2168 # on itself without copying the executable. So "make gdb1" will make
2169 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
2170 # Removing gdb1 before the copy is the right thing if gdb1 is open
2171 # in another process.
2172 gdb1$(EXEEXT): gdb$(EXEEXT)
2174 cp gdb$(EXEEXT) gdb1$(EXEEXT)
2176 # Put the proper machine-specific files first, so M-. on a machine
2177 # specific routine gets the one for the correct machine. (FIXME: those
2178 # files go in twice; we should be removing them from the main list).
2180 # TAGS depends on all the files that go into it so you can rebuild TAGS
2181 # with `make TAGS' and not have to say `rm TAGS' first.
2183 GDB_NM_FILE = @GDB_NM_FILE@
2184 TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
2186 etags `(test -n "$(GDB_NM_FILE)" && echo "$(srcdir)/$(GDB_NM_FILE)")` \
2187 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
2188 echo $(srcdir)/$$i ; \
2189 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
2191 done) | sed -e 's/\.o$$/\.c/'` \
2192 `find $(srcdir)/config -name '*.h' -print`
2196 clean mostlyclean: $(CONFIG_CLEAN)
2197 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(CLEANDIRS)" subdir_do
2198 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp
2199 rm -f init.c version.c observer.h observer.inc
2200 rm -f gdb$(EXEEXT) core make.log
2201 rm -f gdb[0-9]$(EXEEXT)
2202 rm -f test-cp-name-parser$(EXEEXT)
2203 rm -f xml-builtin.c stamp-xml
2205 for i in $(CONFIG_SRC_SUBDIR); do \
2207 rm -f $$i/$(DEPDIR)/*; \
2210 # This used to depend on c-exp.c m2-exp.c TAGS
2211 # I believe this is wrong; the makefile standards for distclean just
2212 # describe removing files; the only sort of "re-create a distribution"
2213 # functionality described is if the distributed files are unmodified.
2214 # NB: While GDBSERVER might be configured on native systems, it isn't
2215 # always included in SUBDIRS. Remove the gdbserver files explicitly.
2217 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do
2218 rm -rf $(GNULIB_BUILDDIR)
2219 rm -f gdbserver/config.status gdbserver/config.log
2220 rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
2221 rm -f gdbserver/Makefile gdbserver/config.cache
2222 rm -f nm.h config.status config.h stamp-h gdb-gdb.gdb jit-reader.h
2223 rm -f y.output yacc.acts yacc.tmp y.tab.h
2224 rm -f config.log config.cache
2227 for i in $(CONFIG_SRC_SUBDIR); do \
2228 rmdir $$i/$(DEPDIR); \
2231 maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
2232 realclean: maintainer-clean
2234 local-maintainer-clean:
2235 @echo "This command is intended for maintainers to use;"
2236 @echo "it deletes files that may require special tools to rebuild."
2239 ada-lex.c ada-exp.c \
2240 d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c rust-exp.c
2241 rm -f TAGS $(INFOFILES)
2243 rm -f nm.h config.status
2245 do-maintainer-clean:
2246 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(CLEANDIRS)" \
2249 diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS)
2250 cd doc; $(MAKE) $(MFLAGS) diststuff
2253 @for i in $(DODIRS); do \
2255 $(REQUIRED_SUBDIRS)) \
2256 if [ ! -f ./$$i/Makefile ] ; then \
2257 echo "Missing $$i/Makefile" >&2 ; \
2261 if [ -f ./$$i/Makefile ] ; then \
2263 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
2264 else exit 1 ; fi ; \
2268 Makefile: Makefile.in config.status
2269 # Regenerate the Makefile and the tm.h / nm.h links.
2270 CONFIG_FILES="Makefile" \
2273 $(SHELL) config.status
2275 $(GNULIB_BUILDDIR)/Makefile: gnulib/Makefile.in config.status
2276 @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
2277 CONFIG_COMMANDS="depfiles" \
2280 $(SHELL) config.status
2282 data-directory/Makefile: data-directory/Makefile.in config.status
2283 CONFIG_FILES="data-directory/Makefile" \
2284 CONFIG_COMMANDS="depfiles" \
2287 $(SHELL) config.status
2291 ./gdb$(EXEEXT) --data-directory=`pwd`/data-directory $(GDBFLAGS)
2293 jit-reader.h: $(srcdir)/jit-reader.in
2294 $(SHELL) config.status $@
2296 gcore: $(srcdir)/gcore.in
2297 $(SHELL) config.status $@
2299 config.h: stamp-h ; @true
2300 stamp-h: $(srcdir)/config.in config.status
2301 CONFIG_HEADERS=config.h:config.in \
2302 CONFIG_COMMANDS="default depdir" \
2305 $(SHELL) config.status
2307 config.status: $(srcdir)/configure configure.tgt configure.host ../bfd/development.sh
2308 $(SHELL) config.status --recheck
2311 ACLOCAL_AMFLAGS = -I ../config
2313 # Keep these in sync with the includes in acinclude.m4.
2316 acx_configure_dir.m4 \
2320 ../config/acinclude.m4 \
2321 ../config/plugins.m4 \
2322 ../config/lead-dot.m4 \
2323 ../config/override.m4 \
2324 ../config/largefile.m4 \
2325 ../config/gettext-sister.m4 \
2326 ../config/lib-ld.m4 \
2327 ../config/lib-prefix.m4 \
2328 ../config/lib-link.m4 \
2331 ../config/depstand.m4 \
2332 ../config/lcmessage.m4 \
2333 ../config/codeset.m4 \
2336 $(srcdir)/aclocal.m4: @MAINTAINER_MODE_TRUE@ $(aclocal_m4_deps)
2337 cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
2340 configure_deps = $(srcdir)/configure.ac $(srcdir)/aclocal.m4
2341 $(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(configure_deps)
2342 cd $(srcdir) && $(AUTOCONF)
2344 AUTOHEADER = autoheader
2345 $(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(configure_deps)
2346 cd $(srcdir) && $(AUTOHEADER)
2350 # automatic rebuilding in automake-generated Makefiles requires
2351 # this rule in the toplevel Makefile, which, with GNU make, causes
2352 # the desired updates through the implicit regeneration of the Makefile
2353 # and all of its prerequisites.
2360 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
2362 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
2364 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
2366 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
2368 # GDB MANUAL: TeX dvi file
2370 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
2372 # GDB MANUAL: info file
2374 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
2376 # Make copying.c from COPYING
2377 $(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ $(srcdir)/../COPYING3 $(srcdir)/copying.awk
2378 awk -f $(srcdir)/copying.awk \
2379 < $(srcdir)/../COPYING3 > $(srcdir)/copying.tmp
2380 mv $(srcdir)/copying.tmp $(srcdir)/copying.c
2382 version.c: Makefile version.in $(srcdir)/../bfd/version.h $(srcdir)/common/create-version.sh
2383 $(SHELL) $(srcdir)/common/create-version.sh $(srcdir) \
2384 $(host_alias) $(target_alias) version.c
2386 observer.h: observer.sh doc/observer.texi
2387 ${srcdir}/observer.sh h ${srcdir}/doc/observer.texi observer.h
2389 observer.inc: observer.sh doc/observer.texi
2390 ${srcdir}/observer.sh inc ${srcdir}/doc/observer.texi observer.inc
2393 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
2394 `echo $(DEPFILES) $(CONFIG_OBS) | sed 's/\.o /\.c /g'`
2396 gdb.cxref: $(SFILES)
2397 cxref -I. $(SFILES) >gdb.cxref
2401 # GNU Make has an annoying habit of putting *all* the Makefile variables
2402 # into the environment, unless you include this target as a circumvention.
2403 # Rumor is that this will be fixed (and this target can be removed)
2407 # GNU Make 3.63 has a different problem: it keeps tacking command line
2408 # overrides onto the definition of $(MAKE). This variable setting
2413 aarch64-fbsd-nat.c \
2414 aarch64-fbsd-tdep.c \
2415 aarch64-linux-nat.c \
2416 aarch64-linux-tdep.c \
2417 aarch64-newlib-tdep.c \
2423 alpha-linux-tdep.c \
2424 alpha-mdebug-tdep.c \
2429 amd64-darwin-tdep.c \
2430 amd64-dicos-tdep.c \
2434 amd64-linux-tdep.c \
2447 arm-get-next-pcs.c \
2454 arm-symbian-tdep.c \
2483 i386-cygwin-tdep.c \
2485 i386-darwin-tdep.c \
2502 ia64-libunwind-tdep.c \
2523 microblaze-linux-tdep.c \
2535 mips64-obsd-tdep.c \
2540 nios2-linux-tdep.c \
2553 ppc-ravenscar-thread.c \
2557 ravenscar-thread.c \
2560 rs6000-lynx178-tdep.c \
2580 sparc-linux-tdep.c \
2585 sparc-ravenscar-thread.c \
2589 sparc64-fbsd-nat.c \
2590 sparc64-fbsd-tdep.c \
2591 sparc64-linux-nat.c \
2592 sparc64-linux-tdep.c \
2594 sparc64-nbsd-nat.c \
2595 sparc64-nbsd-tdep.c \
2596 sparc64-obsd-nat.c \
2597 sparc64-obsd-tdep.c \
2598 sparc64-sol2-tdep.c \
2603 tilegx-linux-nat.c \
2604 tilegx-linux-tdep.c \
2616 xtensa-linux-nat.c \
2617 xtensa-linux-tdep.c \
2620 common/mingw-strerror.c \
2621 common/posix-strerror.c
2623 # Some files need explicit build rules (due to -Werror problems) or due
2624 # to sub-directory fun 'n' games.
2626 # Do not try to build "printcmd.c" with -Wformat-nonliteral. It manually
2627 # checks format strings.
2628 printcmd.o: $(srcdir)/printcmd.c
2629 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_FORMAT) \
2630 $(COMPILE.post) $(srcdir)/printcmd.c
2633 # Same for "target-float.c".
2634 target-float.o: $(srcdir)/target-float.c
2635 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_FORMAT) \
2636 $(COMPILE.post) $(srcdir)/target-float.c
2638 # ada-exp.c can appear in srcdir, for releases; or in ., for
2639 # development builds.
2640 ADA_EXP_C = `if test -f ada-exp.c; then echo ada-exp.c; else echo $(srcdir)/ada-exp.c; fi`
2642 # Some versions of flex give output that triggers
2643 # -Wold-style-definition.
2644 ada-exp.o: ada-exp.c
2645 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_DEFS) \
2646 $(COMPILE.post) $(ADA_EXP_C)
2649 # Message files. Based on code in gcc/Makefile.in.
2651 # Rules for generating translated message descriptions. Disabled by
2652 # autoconf if the tools are not available.
2654 .PHONY: all-po install-po uninstall-po clean-po update-po $(PACKAGE).pot
2658 # This notation should be acceptable to all Make implementations used
2659 # by people who are interested in updating .po files.
2660 update-po: $(CATALOGS:.gmo=.pox)
2662 # N.B. We do not attempt to copy these into $(srcdir). The snapshot
2665 -test -d po || mkdir po
2666 $(GMSGFMT) --statistics -o $@ $<
2668 # The new .po has to be gone over by hand, so we deposit it into
2669 # build/po with a different extension. If build/po/$(PACKAGE).pot
2670 # exists, use it (it was just created), else use the one in srcdir.
2672 -test -d po || mkdir po
2673 $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
2674 then echo po/$(PACKAGE).pot; \
2675 else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
2677 # This rule has to look for .gmo modules in both srcdir and the cwd,
2678 # and has to check that we actually have a catalog for each language,
2679 # in case they weren't built or included with the distribution.
2681 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(datadir)
2682 cats="$(CATALOGS)"; for cat in $$cats; do \
2683 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
2684 if [ -f $$cat ]; then :; \
2685 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
2688 dir=$(localedir)/$$lang/LC_MESSAGES; \
2689 echo $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir; \
2690 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir || exit 1; \
2691 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
2692 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
2695 cats="$(CATALOGS)"; for cat in $$cats; do \
2696 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
2697 if [ -f $$cat ]; then :; \
2698 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
2701 dir=$(localedir)/$$lang/LC_MESSAGES; \
2702 rm -f $(DESTDIR)$$dir/$(PACKAGE).mo; \
2704 # Delete po/*.gmo only if we are not building in the source directory.
2706 -if [ ! -f Makefile.in ]; then rm -f po/*.gmo; fi
2708 # Rule for regenerating the message template (gdb.pot). Instead of
2709 # forcing everyone to edit POTFILES.in, which proved impractical, this
2710 # rule has no dependencies and always regenerates gdb.pot. This is
2711 # relatively harmless since the .po files do not directly depend on
2712 # it. The .pot file is left in the build directory. Since GDB's
2713 # Makefile lacks a cannonical list of sources (missing xm, tm and nm
2714 # files) force this rule.
2715 $(PACKAGE).pot: po/$(PACKAGE).pot
2716 po/$(PACKAGE).pot: force
2717 -test -d po || mkdir po
2718 sh -e $(srcdir)/po/gdbtext $(XGETTEXT) $(PACKAGE) . $(srcdir)
2722 # YACC/LEX dependencies
2724 # LANG-exp.c is generated in objdir from LANG-exp.y if it doesn't
2725 # exist in srcdir, then compiled in objdir to LANG-exp.o. If we
2726 # said LANG-exp.c rather than ./c-exp.c some makes would
2727 # sometimes re-write it into $(srcdir)/c-exp.c. Remove bogus
2728 # decls for malloc/realloc/free which conflict with everything else.
2729 # Strictly speaking c-exp.c should therefore depend on
2730 # Makefile.in, but that was a pretty big annoyance.
2734 $(SHELL) $(YLWRAP) $< y.tab.c $@ -- $(YACC) $(YFLAGS) && mv $@ $@.tmp \
2735 || (rm -f $@; false)
2736 sed -e '/extern.*malloc/d' \
2737 -e '/extern.*realloc/d' \
2738 -e '/extern.*free/d' \
2739 -e '/include.*malloc.h/d' \
2740 -e 's/\([^x]\)malloc/\1xmalloc/g' \
2741 -e 's/\([^x]\)realloc/\1xrealloc/g' \
2742 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
2743 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
2744 -e '/^#line.*y.tab.c/d' \
2745 -e 's/YY_NULL/YY_NULLPTR/g' \
2749 if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \
2750 $(FLEX) -o$@ $< && \
2752 sed -e '/extern.*malloc/d' \
2753 -e '/extern.*realloc/d' \
2754 -e '/extern.*free/d' \
2755 -e '/include.*malloc.h/d' \
2756 -e 's/\([^x]\)malloc/\1xmalloc/g' \
2757 -e 's/\([^x]\)realloc/\1xrealloc/g' \
2758 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
2759 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
2760 -e 's/yy_flex_xrealloc/yyxrealloc/g' \
2764 elif [ -f $@ ]; then \
2765 echo "Warning: $*.c older than $*.l and flex not available."; \
2767 echo "$@ missing and flex not available."; \
2771 .PRECIOUS: ada-lex.c
2775 xml-builtin.c: stamp-xml; @true
2776 stamp-xml: $(srcdir)/features/feature_to_c.sh Makefile $(XMLFILES)
2777 rm -f xml-builtin.tmp
2779 $(SHELL) $(srcdir)/features/feature_to_c.sh \
2780 xml-builtin.tmp $(XMLFILES)
2781 $(SHELL) $(srcdir)/../move-if-change xml-builtin.tmp xml-builtin.c
2782 echo stamp > stamp-xml
2784 .PRECIOUS: xml-builtin.c
2787 # GDBTK sub-directory
2790 all-gdbtk: insight$(EXEEXT)
2793 transformed_name=`t='$(program_transform_name)'; \
2794 echo insight | sed -e $$t` ; \
2795 if test "x$$transformed_name" = x; then \
2796 transformed_name=insight ; \
2800 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
2801 $(INSTALL_PROGRAM) insight$(EXEEXT) \
2802 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2803 $(SHELL) $(srcdir)/../mkinstalldirs \
2804 $(DESTDIR)$(GDBTK_LIBRARY) ; \
2805 $(SHELL) $(srcdir)/../mkinstalldirs \
2806 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION) ; \
2807 $(INSTALL_DATA) $(srcdir)/gdbtk/plugins/plugins.tcl \
2808 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION)/plugins.tcl ; \
2809 $(SHELL) $(srcdir)/../mkinstalldirs \
2810 $(DESTDIR)$(GDBTK_LIBRARY)/images \
2811 $(DESTDIR)$(GDBTK_LIBRARY)/images2 ; \
2812 $(SHELL) $(srcdir)/../mkinstalldirs \
2813 $(DESTDIR)$(GDBTK_LIBRARY)/help \
2814 $(DESTDIR)$(GDBTK_LIBRARY)/help/images \
2815 $(DESTDIR)$(GDBTK_LIBRARY)/help/trace ; \
2816 cd $(srcdir)/gdbtk/library ; \
2817 for i in *.tcl *.itcl *.ith *.itb images/*.gif images2/*.gif images/icons.txt images2/icons.txt tclIndex help/*.html help/trace/*.html help/trace/index.toc help/images/*.gif help/images/*.png; \
2819 $(INSTALL_DATA) $$i $(DESTDIR)$(GDBTK_LIBRARY)/$$i ; \
2823 transformed_name=`t='$(program_transform_name)'; \
2824 echo insight | sed -e $$t` ; \
2825 if test "x$$transformed_name" = x; then \
2826 transformed_name=insight ; \
2830 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2831 rm -rf $(DESTDIR)$(GDBTK_LIBRARY)
2834 rm -f insight$(EXEEXT)
2836 # Removing the old gdb first works better if it is running, at least on SunOS.
2837 insight$(EXEEXT): gdbtk-main.o libgdb.a $(ADD_DEPS) \
2838 $(CDEPS) $(TDEPLIBS)
2839 rm -f insight$(EXEEXT)
2840 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
2841 -o insight$(EXEEXT) gdbtk-main.o libgdb.a \
2842 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
2844 gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
2845 $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
2847 all_gdbtk_cflags = $(IDE_CFLAGS) $(ITCL_CFLAGS) \
2848 $(ITK_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
2850 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" \
2851 -DSRC_DIR=\"$(GDBTK_SRC_DIR)\"
2854 # Dependency tracking.
2857 ifeq ($(DEPMODE),depmode=gcc3)
2858 # Note that we put the dependencies into a .Tpo file, then move them
2859 # into place if the compile succeeds. We need this because gcc does
2860 # not atomically write the dependency output file.
2861 override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
2862 -MF $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo
2863 override POSTCOMPILE = @mv $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo \
2864 $(@D)/$(DEPDIR)/$(basename $(@F)).Po
2866 override COMPILE.pre = source='$<' object='$@' libtool=no \
2867 DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) \
2868 $(CXX) -x c++ $(CXX_DIALECT)
2869 # depcomp handles atomicity for us, so we don't need a postcompile
2871 override POSTCOMPILE =
2874 # A list of all the objects we might care about in this build, for
2875 # dependency tracking.
2876 all_object_files = gdb.o $(LIBGDB_OBS) gdbtk-main.o \
2877 test-cp-name-parser.o
2879 # Ensure that generated files are created early. Use order-only
2880 # dependencies if available. They require GNU make 3.80 or newer,
2881 # and the .VARIABLES variable was introduced at the same time.
2883 $(all_object_files): | $(generated_files)
2885 $(all_object_files) : $(generated_files)
2889 -include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
2891 # Disable implicit make rules.
2892 include $(srcdir)/disable-implicit-rules.mk
2894 ### end of the gdb Makefile.in.