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 WARN_CFLAGS = @WARN_CFLAGS@
198 WERROR_CFLAGS = @WERROR_CFLAGS@
199 GDB_WARN_CFLAGS = $(WARN_CFLAGS)
200 GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
202 GDB_WARN_CFLAGS_NO_FORMAT = `echo " $(GDB_WARN_CFLAGS) " \
203 | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"`
204 GDB_WARN_CFLAGS_NO_DEFS = `echo " $(GDB_WARN_CFLAGS) " \
205 | sed "s/ -Wold-style-definition / -Wno-old-style-definition /g"`
207 RDYNAMIC = @RDYNAMIC@
209 # Where is the INTL library? Typically in ../intl.
211 INTL_DEPS = @LIBINTL_DEP@
212 INTL_CFLAGS = @INCINTL@
214 # Where is the ICONV library? This will be empty if in libc or not available.
215 LIBICONV = @LIBICONV@
217 # Did the user give us a --with-gdb-datadir option?
218 GDB_DATADIR = @GDB_DATADIR@
220 # Flags to pass to gdb when invoked with "make run".
223 # Helper code from gnulib.
224 GNULIB_BUILDDIR = build-gnulib
225 LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
226 INCGNU = -I$(srcdir)/gnulib/import -I$(GNULIB_BUILDDIR)/import
228 # Generated headers in the gnulib directory. These must be listed
229 # so that they are generated before other files are compiled.
230 GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@
233 # CLI sub directory definitons
260 # MI sub directory definitons
305 # TUI sub directory definitions
342 tui/tui-wingeneral.c \
347 SUBDIR_TUI_CFLAGS = -DTUI=1
350 # GCC Compile support sub-directory definitions
352 SUBDIR_GCC_COMPILE_OBS = \
354 compile-c-support.o \
355 compile-c-symbols.o \
358 compile-object-load.o \
361 SUBDIR_GCC_COMPILE_SRCS = \
363 compile/compile-c-support.c \
364 compile/compile-c-symbols.c \
365 compile/compile-c-types.c \
366 compile/compile-loc2c.c \
367 compile/compile-object-load.c \
368 compile/compile-object-load.h \
369 compile/compile-object-run.c \
370 compile/compile-object-run.h
373 # Guile sub directory definitons for guile support.
402 SUBDIR_GUILE_SRCS = \
405 guile/scm-auto-load.c \
407 guile/scm-breakpoint.c \
410 guile/scm-exception.c \
413 guile/scm-iterator.c \
414 guile/scm-lazy-string.c \
416 guile/scm-objfile.c \
419 guile/scm-pretty-print.c \
420 guile/scm-progspace.c \
421 guile/scm-safe-call.c \
430 SUBDIR_GUILE_LDFLAGS =
431 SUBDIR_GUILE_CFLAGS =
434 # python sub directory definitons
436 SUBDIR_PYTHON_OBS = \
448 py-finishbreakpoint.o \
459 py-newobjfileevent.o \
480 SUBDIR_PYTHON_SRCS = \
482 python/py-auto-load.c \
484 python/py-bpevent.c \
485 python/py-breakpoint.c \
487 python/py-continueevent.c \
489 python/py-evtregistry.c \
491 python/py-exitedevent.c \
492 python/py-finishbreakpoint.c \
494 python/py-framefilter.c \
495 python/py-function.c \
496 python/py-gdb-readline.c \
497 python/py-inferior.c \
498 python/py-infevents.c \
499 python/py-infthread.c \
500 python/py-instruction.c \
501 python/py-lazy-string.c \
502 python/py-linetable.c \
503 python/py-newobjfileevent.c \
504 python/py-objfile.c \
506 python/py-prettyprint.c \
507 python/py-progspace.c \
509 python/py-record-btrace.c \
510 python/py-record-full.c \
511 python/py-signalevent.c \
512 python/py-stopevent.c \
515 python/py-threadevent.c \
521 python/py-xmethods.c \
525 SUBDIR_PYTHON_LDFLAGS =
526 SUBDIR_PYTHON_CFLAGS =
528 SUBDIR_UNITTESTS_SRCS = \
529 unittests/array-view-selftests.c \
530 unittests/common-utils-selftests.c \
531 unittests/environ-selftests.c \
532 unittests/function-view-selftests.c \
533 unittests/memrange-selftests.c \
534 unittests/offset-type-selftests.c \
535 unittests/optional-selftests.c \
536 unittests/ptid-selftests.c \
537 unittests/scoped_restore-selftests.c \
538 unittests/xml-utils-selftests.c
540 SUBDIR_UNITTESTS_OBS = \
541 array-view-selftests.o \
542 common-utils-selftests.o \
543 environ-selftests.o \
544 function-view-selftests.o \
545 memrange-selftests.o \
546 offset-type-selftests.o \
547 optional-selftests.o \
549 scoped_restore-selftests.o \
550 xml-utils-selftests.o
552 # Opcodes currently live in one of two places. Either they are in the
553 # opcode library, typically ../opcodes, or they are in a header file
555 # Where is the "-lopcodes" library, with (some of) the opcode tables and
557 OPCODES_DIR = ../opcodes
558 OPCODES_SRC = $(srcdir)/$(OPCODES_DIR)
559 OPCODES = $(OPCODES_DIR)/libopcodes.a
560 # Where are the other opcode tables which only have header file
562 OP_INCLUDE = $(INCLUDE_DIR)/opcode
563 # Some source files like to use #include "opcodes/file.h"
564 OPCODES_CFLAGS = -I$(OP_INCLUDE) -I$(OPCODES_SRC)/..
566 # The simulator is usually nonexistent; targets that include one
567 # should set this to list all the .o or .a files to be linked in.
570 WIN32LIBS = @WIN32LIBS@
572 # Tcl et al cflags and libraries
574 TCL_CFLAGS = @TCL_INCLUDE@
575 GDBTKLIBS = @GDBTKLIBS@
576 # Extra flags that the GDBTK files need:
577 GDBTK_CFLAGS = @GDBTK_CFLAGS@
580 TK_CFLAGS = @TK_INCLUDE@
582 X11_CFLAGS = @TK_XINCLUDES@
586 WIN32LDAPP = @WIN32LDAPP@
589 GUI_CFLAGS_X = @GUI_CFLAGS_X@
590 IDE_CFLAGS = $(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
592 ALL_TCL_CFLAGS = $(TCL_CFLAGS) $(TK_CFLAGS)
594 # The version of gdbtk we're building. This should be kept
595 # in sync with GDBTK_VERSION and friends in gdbtk.h.
597 GDBTK_LIBRARY = $(datadir)/insight$(GDBTK_VERSION)
599 # Gdbtk requires an absolute path to the source directory or
600 # the testsuite won't run properly.
601 GDBTK_SRC_DIR = @GDBTK_SRC_DIR@
614 SUBDIR_GDBTK_SRCS = \
615 gdbtk/generic/gdbtk.c \
616 gdbtk/generic/gdbtk-bp.c \
617 gdbtk/generic/gdbtk-cmds.c \
618 gdbtk/generic/gdbtk-hooks.c \
619 gdbtk/generic/gdbtk-interp.c \
620 gdbtk/generic/gdbtk-main.c \
621 gdbtk/generic/gdbtk-register.c \
622 gdbtk/generic/gdbtk-stack.c \
623 gdbtk/generic/gdbtk-varobj.c \
624 gdbtk/generic/gdbtk-wrapper.c
626 SUBDIR_GDBTK_DEPS = $(LIBGUI) $(TCL_DEPS) $(TK_DEPS)
627 SUBDIR_GDBTK_LDFLAGS =
628 SUBDIR_GDBTK_CFLAGS = -DGDBTK
630 CONFIG_OBS = @CONFIG_OBS@
631 CONFIG_SRCS = @CONFIG_SRCS@
632 CONFIG_DEPS = @CONFIG_DEPS@
633 CONFIG_LDFLAGS = @CONFIG_LDFLAGS@
634 ENABLE_CFLAGS = @ENABLE_CFLAGS@
635 CONFIG_ALL = @CONFIG_ALL@
636 CONFIG_CLEAN = @CONFIG_CLEAN@
637 CONFIG_INSTALL = @CONFIG_INSTALL@
638 CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
639 CONFIG_SRC_SUBDIR = @CONFIG_SRC_SUBDIR@
640 HAVE_NATIVE_GCORE_TARGET = @HAVE_NATIVE_GCORE_TARGET@
642 # -I. for config files.
643 # -I$(srcdir) for gdb internal headers.
644 # -I$(srcdir)/config for more generic config files.
646 # It is also possible that you will need to add -I/usr/include/sys if
647 # your system doesn't have fcntl.h in /usr/include (which is where it
648 # should be according to Posix).
650 GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/common -I$(srcdir)/config \
651 -DLOCALEDIR="\"$(localedir)\"" $(DEFS)
653 # MH_CFLAGS, if defined, has host-dependent CFLAGS from the config directory.
654 GLOBAL_CFLAGS = $(MH_CFLAGS)
656 PROFILE_CFLAGS = @PROFILE_CFLAGS@
658 # These are specifically reserved for setting from the command line
659 # when running make. I.E.: "make CFLAGS=-Wmissing-prototypes".
661 CXXFLAGS = @CXXFLAGS@
663 # Set by configure, for e.g. expat. Python installations are such that
664 # C headers are included using their basename (for example, we #include
665 # <Python.h> rather than, say, <python/Python.h>). Since the file names
666 # are sometimes a little generic, we think that the risk of collision
667 # with other header files is high. If that happens, we try to mitigate
668 # a bit the consequences by putting the Python includes last in the list.
669 INTERNAL_CPPFLAGS = @CPPFLAGS@ @GUILE_CPPFLAGS@ @PYTHON_CPPFLAGS@
671 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
672 INTERNAL_CFLAGS_BASE = \
673 $(CXXFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
674 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) $(ZLIBINC) \
675 $(BFD_CFLAGS) $(INCLUDE_CFLAGS) $(LIBDECNUMBER_CFLAGS) \
676 $(INTL_CFLAGS) $(INCGNU) $(ENABLE_CFLAGS) $(INTERNAL_CPPFLAGS)
677 INTERNAL_WARN_CFLAGS = $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS)
678 INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
680 # LDFLAGS is specifically reserved for setting from the command line
684 # Profiling options need to go here to work.
685 # I think it's perfectly reasonable for a user to set -pg in CFLAGS
686 # and have it work; that's why CFLAGS is here.
687 # PROFILE_CFLAGS is _not_ included, however, because we use monstartup.
689 $(CXXFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) \
690 $(LDFLAGS) $(CONFIG_LDFLAGS)
692 # If your system is missing alloca(), or, more likely, it's there but
693 # it doesn't work, then refer to libiberty.
695 # Libraries and corresponding dependencies for compiling gdb.
696 # XM_CLIBS, defined in *config files, have host-dependent libs.
697 # LIBIBERTY appears twice on purpose.
698 CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(ZLIB) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
699 $(XM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) \
700 @LIBS@ @GUILE_LIBS@ @PYTHON_LIBS@ \
701 $(LIBEXPAT) $(LIBLZMA) $(LIBBABELTRACE) $(LIBIPT) \
702 $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU) $(LIBICONV)
703 CDEPS = $(XM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) \
704 $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) $(LIBGNU)
706 ADD_FILES = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
707 ADD_DEPS = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
711 LINT = /usr/5bin/lint
712 LINTFLAGS = $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
713 $(BFD_CFLAGS) $(INCLUDE_CFLAGS) \
719 # XML files to build in to GDB.
721 $(srcdir)/features/btrace.dtd \
722 $(srcdir)/features/btrace-conf.dtd \
723 $(srcdir)/features/gdb-target.dtd \
724 $(srcdir)/features/library-list.dtd \
725 $(srcdir)/features/library-list-aix.dtd \
726 $(srcdir)/features/library-list-svr4.dtd \
727 $(srcdir)/features/osdata.dtd \
728 $(srcdir)/features/threads.dtd \
729 $(srcdir)/features/traceframe-info.dtd \
730 $(srcdir)/features/xinclude.dtd
732 # This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
733 # interface to the serial port. Hopefully if get ported to OS/2, VMS,
734 # etc., then there will be (as part of the C library or perhaps as
735 # part of libiberty) a POSIX interface. But at least for now the
736 # host-dependent makefile fragment might need to use something else
738 SER_HARDWIRE = @SER_HARDWIRE@
740 # The `remote' debugging target is supported for most architectures,
741 # but not all (e.g. 960)
754 # This is remote-sim.o if a simulator is to be linked in.
757 # Target-dependent object files.
758 TARGET_OBS = @TARGET_OBS@
760 # All target-dependent objects files that require 64-bit CORE_ADDR
761 # (used with --enable-targets=all --enable-64-bit-bfd).
762 ALL_64_TARGET_OBS = \
763 aarch64-fbsd-tdep.o \
764 aarch64-linux-tdep.o \
765 aarch64-newlib-tdep.o \
769 alpha-mdebug-tdep.o \
773 amd64-darwin-tdep.o \
781 amd64-windows-tdep.o \
782 arch/aarch64-insn.o \
788 sparc64-fbsd-tdep.o \
789 sparc64-linux-tdep.o \
790 sparc64-nbsd-tdep.o \
791 sparc64-obsd-tdep.o \
792 sparc64-sol2-tdep.o \
795 # All other target-dependent objects files (used with --enable-targets=all).
799 arch/arm-get-next-pcs.o \
855 microblaze-linux-tdep.o \
862 mn10300-linux-tdep.o \
877 ppc-ravenscar-thread.o \
883 rs6000-lynx178-tdep.o \
902 sparc-ravenscar-thread.o \
910 tilegx-linux-tdep.o \
919 xtensa-linux-tdep.o \
922 # The following native-target dependent variables are defined on
924 NAT_FILE = @NAT_FILE@
925 NATDEPFILES = @NATDEPFILES@
926 NAT_CDEPS = @NAT_CDEPS@
927 LOADLIBES = @LOADLIBES@
928 MH_CFLAGS = @MH_CFLAGS@
929 XM_CLIBS = @XM_CLIBS@
930 NAT_GENERATED_FILES = @NAT_GENERATED_FILES@
931 HAVE_NATIVE_GCORE_HOST = @HAVE_NATIVE_GCORE_HOST@
933 # Native-target dependent makefile fragment comes in here.
936 # End of native-target dependent variables.
940 "exec_prefix=$(exec_prefix)" \
941 "infodir=$(infodir)" \
942 "datarootdir=$(datarootdir)" \
944 "htmldir=$(htmldir)" \
948 "datadir=$(datadir)" \
949 "includedir=$(includedir)" \
950 "against=$(against)" \
951 "DESTDIR=$(DESTDIR)" \
953 "AR_FLAGS=$(AR_FLAGS)" \
957 "CXX_DIALECT=$(CXX_DIALECT)" \
958 "CXXFLAGS=$(CXXFLAGS)" \
959 "DLLTOOL=$(DLLTOOL)" \
960 "LDFLAGS=$(LDFLAGS)" \
962 "MAKEINFO=$(MAKEINFO)" \
963 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
964 "MAKEINFO_EXTRA_FLAGS=$(MAKEINFO_EXTRA_FLAGS)" \
965 "MAKEHTML=$(MAKEHTML)" \
966 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
967 "INSTALL=$(INSTALL)" \
968 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
969 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
970 "INSTALL_DATA=$(INSTALL_DATA)" \
971 "RUNTEST=$(RUNTEST)" \
972 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
974 # Flags that we pass when building the testsuite.
976 # empty for native, $(target_alias)/ for cross
977 target_subdir = @target_subdir@
980 if [ -f $${rootme}/../gcc/xgcc ] ; then \
981 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
982 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/; \
984 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
987 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
990 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
995 if [ -f $${rootme}/../gcc/xg++ ] ; then \
996 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
997 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/; \
999 echo $${rootme}/../gcc/xg++ -B$${rootme}/../gcc/; \
1002 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
1005 t='$(program_transform_name)'; echo g++ | sed -e '' $$t; \
1009 # The use of $$(x_FOR_TARGET) reduces the command line length by not
1010 # duplicating the lengthy definition.
1011 TARGET_FLAGS_TO_PASS = \
1012 "prefix=$(prefix)" \
1013 "exec_prefix=$(exec_prefix)" \
1014 "against=$(against)" \
1015 'CC=$$(CC_FOR_TARGET)' \
1016 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
1017 "CFLAGS=$(CFLAGS)" \
1018 'CXX=$$(CXX_FOR_TARGET)' \
1019 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
1020 "CXXFLAGS=$(CXXFLAGS)" \
1021 "INSTALL=$(INSTALL)" \
1022 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
1023 "INSTALL_DATA=$(INSTALL_DATA)" \
1024 "MAKEINFO=$(MAKEINFO)" \
1025 "MAKEHTML=$(MAKEHTML)" \
1026 "RUNTEST=$(RUNTEST)" \
1027 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
1028 "FORCE_PARALLEL=$(FORCE_PARALLEL)" \
1031 # All source files that go into linking GDB.
1032 # Links made at configuration time should not be specified here, since
1033 # SFILES is used in building the distribution archive.
1056 break-catch-syscall.c \
1057 break-catch-throw.c \
1092 disasm-selftests.c \
1097 dwarf2-frame-tailcall.c \
1126 gdbarch-selftests.c \
1182 progspace-and-thread.c \
1219 target-descriptions.c \
1242 common/btrace-common.c \
1245 common/common-debug.c \
1246 common/common-exceptions.c \
1247 common/common-regcache.c \
1248 common/common-utils.c \
1252 common/filestuff.c \
1254 common/job-control.c \
1255 common/gdb_tilde_expand.c \
1258 common/print-utils.c \
1261 common/run-time-clock.c \
1264 common/signals-state-save-restore.c \
1266 common/xml-utils.c \
1268 target/waitstatus.c \
1269 $(SUBDIR_GCC_COMPILE_SRCS)
1271 LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
1273 # Header files that need to have srcdir added. Note that in the cases
1274 # where we use a macro like $(gdbcmd_h), things are carefully arranged
1275 # so that each .h file is listed exactly once (M-x tags-search works
1276 # wrong if TAGS has files twice). Because this is tricky to get
1277 # right, it is probably easiest just to list .h files here directly.
1279 HFILES_NO_SRCDIR = \
1285 amd64-darwin-tdep.h \
1286 amd64-linux-tdep.h \
1329 dwarf2-frame-tailcall.h \
1354 gdb_proc_service.h \
1371 hppa-linux-offsets.h \
1374 i386-darwin-tdep.h \
1379 ia64-libunwind-tdep.h \
1432 ppc-ravenscar-thread.h \
1439 progspace-and-thread.h \
1443 ravenscar-thread.h \
1477 sparc-ravenscar-thread.h \
1488 target-descriptions.h \
1516 arch/aarch64-insn.h \
1526 common/common-debug.h \
1527 common/common-defs.h \
1528 common/common-exceptions.h \
1529 common/common-gdbthread.h \
1530 common/common-regcache.h \
1531 common/common-types.h \
1532 common/common-utils.h \
1533 common/job-control.h \
1538 common/gdb_assert.h \
1539 common/gdb_tilde_expand.h \
1540 common/gdb_locale.h \
1541 common/gdb_setjmp.h \
1542 common/gdb_signals.h \
1543 common/gdb_sys_time.h \
1544 common/gdb_termios.h \
1547 common/common-inferior.h \
1548 common/host-defs.h \
1549 common/print-utils.h \
1553 common/run-time-clock.h \
1554 common/signals-state-save-restore.h \
1558 common/x86-xstate.h \
1559 common/xml-utils.h \
1563 config/djgpp/langinfo.h \
1564 config/djgpp/nl_types.h \
1565 config/i386/nm-fbsd.h \
1566 config/i386/nm-i386gnu.h \
1567 config/sparc/nm-sol2.h \
1568 gnulib/import/inttypes.in.h \
1569 gnulib/import/stddef.in.h \
1570 gnulib/import/stdint.in.h \
1571 gnulib/import/str-two-way.h \
1572 gnulib/import/string.in.h \
1573 gnulib/import/extra/snippet/arg-nonnull.h \
1574 gnulib/import/extra/snippet/c++defs.h \
1575 gnulib/import/extra/snippet/warn-on-use.h \
1583 nat/aarch64-linux.h \
1584 nat/aarch64-linux-hw-point.h \
1585 nat/amd64-linux-siginfo.h \
1587 nat/gdb_thread_db.h \
1588 nat/fork-inferior.h \
1589 nat/linux-btrace.h \
1590 nat/linux-namespaces.h \
1592 nat/linux-osdata.h \
1593 nat/linux-personality.h \
1594 nat/linux-ptrace.h \
1595 nat/linux-waitpid.h \
1596 nat/mips-linux-watch.h \
1600 nat/x86-gcc-cpuid.h \
1602 nat/x86-linux-dregs.h \
1604 python/py-events.h \
1605 python/py-stopevent.h \
1607 python/python-internal.h \
1608 regformats/regdef.h \
1612 target/waitstatus.h \
1626 tui/tui-wingeneral.h \
1629 # Header files that already have srcdir in them, or which are in objdir.
1631 HFILES_WITH_SRCDIR = \
1635 # GDB "info" files, which should be included in their entirety
1636 INFOFILES = gdb.info*
1638 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
1639 # default their values the way we do for SER_HARDWIRE; in the future
1640 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
1641 # variables analogous to SER_HARDWIRE which get defaulted in this
1644 DEPFILES = $(TARGET_OBS) $(SER_HARDWIRE) $(NATDEPFILES) \
1645 $(REMOTE_OBS) $(SIM_OBS)
1647 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
1648 # Don't include YYFILES (*.c) because we already include *.y in SFILES,
1649 # and it's more useful to see it in the .y file.
1650 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
1652 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
1654 COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
1671 break-catch-syscall.o \
1672 break-catch-throw.o \
1690 common-exceptions.o \
1713 disasm-selftests.o \
1717 dwarf2-frame-tailcall.o \
1734 filename-seen-cache.o \
1745 gdb_tilde_expand.o \
1752 gdbarch-selftests.o \
1806 progspace-and-thread.o \
1826 signals-state-save-restore.o \
1840 target-descriptions.o \
1866 $(SUBDIR_GCC_COMPILE_OBS)
1870 SUBDIRS = doc @subdirs@ data-directory $(GNULIB_BUILDDIR)
1871 CLEANDIRS = $(SUBDIRS)
1873 # List of subdirectories in the build tree that must exist.
1874 # This is used to force build failures in existing trees when
1875 # a new directory is added.
1876 # The format here is for the `case' shell command.
1877 REQUIRED_SUBDIRS = doc | testsuite | $(GNULIB_BUILDDIR) | data-directory
1879 # For now, shortcut the "configure GDB for fewer languages" stuff.
1903 # Things which need to be built when making a distribution.
1905 DISTSTUFF = $(YYFILES)
1908 # All generated files which can be included by another file.
1917 $(NAT_GENERATED_FILES)
1919 # Flags needed to compile Python code
1920 PYTHON_CFLAGS = @PYTHON_CFLAGS@
1922 all: gdb$(EXEEXT) $(CONFIG_ALL)
1923 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
1925 # Rule for compiling .c files in the top-level gdb directory.
1930 # Rules for compiling .c files in the various source subdirectories.
1931 %.o: $(srcdir)/cli/%.c
1935 %.o: ${srcdir}/common/%.c
1939 %.o: $(srcdir)/compile/%.c
1943 %.o: $(srcdir)/gdbtk/generic/%.c
1944 $(COMPILE) $(all_gdbtk_cflags) $<
1947 %.o: $(srcdir)/guile/%.c
1951 %.o: $(srcdir)/mi/%.c
1955 %.o: ${srcdir}/nat/%.c
1959 %.o: $(srcdir)/python/%.c
1960 $(COMPILE) $(PYTHON_CFLAGS) $<
1963 %.o: ${srcdir}/target/%.c
1967 %.o: $(srcdir)/tui/%.c
1971 %.o: ${srcdir}/unittests/%.c
1975 # Specify an explicit rule for gdb/common/agent.c, to avoid a clash with the
1976 # object file generate by gdb/agent.c.
1977 common-agent.o: $(srcdir)/common/agent.c
1978 $(COMPILE) $(srcdir)/common/agent.c
1983 # The check target can not use subdir_do, because subdir_do does not
1984 # use TARGET_FLAGS_TO_PASS.
1986 @if [ -f testsuite/Makefile ]; then \
1987 rootme=`pwd`; export rootme; \
1988 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1990 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
1994 @if [ -f testsuite/Makefile ]; then \
1995 rootme=`pwd`; export rootme; \
1996 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1998 $(MAKE) $(TARGET_FLAGS_TO_PASS) check-perf; \
2002 @if [ -f testsuite/Makefile ]; then \
2003 rootme=`pwd`; export rootme; \
2004 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
2006 $(MAKE) $(TARGET_FLAGS_TO_PASS) check-read1; \
2009 check-parallel: force
2010 @if [ -f testsuite/Makefile ]; then \
2011 rootme=`pwd`; export rootme; \
2012 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
2014 $(MAKE) $(TARGET_FLAGS_TO_PASS) check-parallel; \
2017 # The idea is to parallelize testing of multilibs, for example:
2018 # make -j3 check//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
2019 # will run 3 concurrent sessions of check, eventually testing all 10
2020 # combinations. GNU make is required for the % pattern to work, as is
2021 # a shell that expands alternations within braces. If GNU make is not
2022 # used, this rule will harmlessly fail to match. Used FORCE_PARALLEL to
2023 # prevent serialized checking due to the passed RUNTESTFLAGS.
2024 # FIXME: use config.status --config not --version, when available.
2026 @if [ -f testsuite/config.status ]; then \
2027 rootme=`pwd`; export rootme; \
2028 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
2029 target=`echo "$@" | sed 's,//.*,,'`; \
2030 variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
2031 vardots=`echo "$$variant" | sed 's,/,.,g'`; \
2032 testdir=testsuite.$$vardots; \
2033 if [ ! -f $$testdir/Makefile ] && [ -f testsuite/config.status ]; then \
2034 configargs=`cd testsuite && ./config.status --version | \
2035 sed -n -e 's,"$$,,' -e 's,^ *with options ",,p'`; \
2036 $(SHELL) $(srcdir)/../mkinstalldirs $$testdir && \
2038 eval $(SHELL) "\"\$$rootsrc/testsuite/configure\" $$configargs" \
2039 "\"--srcdir=\$$rootsrc/testsuite\"" \
2041 else :; fi && cd $$testdir && \
2042 $(MAKE) $(TARGET_FLAGS_TO_PASS) \
2043 RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
2044 FORCE_PARALLEL=$(if $(FORCE_PARALLEL),1,$(if $(RUNTESTFLAGS),,1)) \
2048 # The set of headers checked by 'check-headers' by default.
2049 CHECK_HEADERS = $(HFILES_NO_SRCDIR)
2051 # Try to compile each header in isolation, thus ensuring headers are
2054 # Defaults to checking all $HFILES_NO_SRCDIR headers.
2058 # make check-headers CHECK_HEADERS="header.h list.h"
2060 # to check specific headers.
2063 @echo Checking headers.
2064 for i in $(CHECK_HEADERS) ; do \
2065 $(CXX) $(CXX_DIALECT) -x c++-header -c -fsyntax-only \
2066 $(INTERNAL_CFLAGS) -include defs.h $(srcdir)/$$i ; \
2068 .PHONY: check-headers
2070 info install-info clean-info dvi pdf install-pdf html install-html: force
2071 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
2073 # Traditionally "install" depends on "all". But it may be useful
2074 # not to; for example, if the user has made some trivial change to a
2075 # source file and doesn't care about rebuilding or just wants to save the
2076 # time it takes for make to check that all is up to date.
2077 # install-only is intended to address that need.
2079 @$(MAKE) $(FLAGS_TO_PASS) install-only
2081 install-only: $(CONFIG_INSTALL)
2082 transformed_name=`t='$(program_transform_name)'; \
2083 echo gdb | sed -e "$$t"` ; \
2084 if test "x$$transformed_name" = x; then \
2085 transformed_name=gdb ; \
2089 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
2090 $(INSTALL_PROGRAM) gdb$(EXEEXT) \
2091 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2092 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
2093 $(INSTALL_DATA) jit-reader.h $(DESTDIR)$(includedir)/gdb/jit-reader.h
2094 if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
2096 transformed_name=`t='$(program_transform_name)'; \
2097 echo gcore | sed -e "$$t"` ; \
2098 if test "x$$transformed_name" = x; then \
2099 transformed_name=gcore ; \
2103 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
2104 $(INSTALL_SCRIPT) gcore \
2105 $(DESTDIR)$(bindir)/$$transformed_name; \
2107 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
2110 $(MAKE) $(FLAGS_TO_PASS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
2111 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
2112 `test -z '$(STRIP)' || \
2113 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install-only
2116 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/guile/gdb
2119 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/python/gdb
2121 uninstall: force $(CONFIG_UNINSTALL)
2122 transformed_name=`t='$(program_transform_name)'; \
2123 echo gdb | sed -e $$t` ; \
2124 if test "x$$transformed_name" = x; then \
2125 transformed_name=gdb ; \
2129 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
2130 $(DESTDIR)$(man1dir)/$$transformed_name.1
2131 if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
2133 transformed_name=`t='$(program_transform_name)'; \
2134 echo gcore | sed -e "$$t"` ; \
2135 if test "x$$transformed_name" = x; then \
2136 transformed_name=gcore ; \
2140 rm -f $(DESTDIR)$(bindir)/$$transformed_name; \
2142 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
2144 # The C++ name parser can be built standalone for testing.
2145 test-cp-name-parser.o: cp-name-parser.c
2146 $(COMPILE) -DTEST_CPNAMES cp-name-parser.c
2149 test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY)
2150 $(CC_LD) $(INTERNAL_LDFLAGS) -o test-cp-name-parser$(EXEEXT) \
2151 test-cp-name-parser.o $(LIBIBERTY)
2153 # We do this by grepping through sources. If that turns out to be too slow,
2154 # maybe we could just require every .o file to have an initialization routine
2155 # of a given name (top.o -> _initialize_top, etc.).
2157 # Formatting conventions: The name of the _initialize_* routines must start
2158 # in column zero, and must not be inside #if.
2160 # Note that the set of files with init functions might change, or the names
2161 # of the functions might change, so this files needs to depend on all the
2162 # object files that will be linked into gdb.
2164 # FIXME: There is a problem with this approach - init.c may force
2165 # unnecessary files to be linked in.
2167 # FIXME: cagney/2002-06-09: gdb/564: gdb/563: Force the order so that
2168 # the first call is to _initialize_gdbtypes (implemented by explicitly
2169 # putting that function's name first in the init.l-tmp file). This is
2170 # a hack to ensure that all the architecture dependant global
2171 # builtin_type_* variables are initialized before anything else
2172 # (per-architecture code is called in the same order that it is
2173 # registered). The ``correct fix'' is to have all the builtin types
2174 # made part of the architecture and initialize them on-demand (using
2175 # gdbarch_data) just like everything else. The catch is that other
2176 # modules still take the address of these builtin types forcing them
2177 # to be variables, sigh!
2179 # NOTE: cagney/2003-03-18: The sed pattern ``s|^\([^ /]...'' is
2180 # anchored on the first column and excludes the ``/'' character so
2181 # that it doesn't add the $(srcdir) prefix to any file that already
2182 # has an absolute path. It turns out that $(DEC)'s True64 make
2183 # automatically adds the $(srcdir) prefixes when it encounters files
2184 # in sub-directories such as cli/ and mi/.
2186 # NOTE: cagney/2004-02-08: The ``case "$$fs" in'' eliminates
2187 # duplicates. Files in the gdb/ directory can end up appearing in
2188 # COMMON_OBS (as a .o file) and CONFIG_SRCS (as a .c file).
2190 INIT_FILES = $(COMMON_OBS) $(TSOBS) $(CONFIG_SRCS) $(SUBDIR_GCC_COMPILE_SRCS)
2191 init.c: $(INIT_FILES)
2193 @rm -f init.c-tmp init.l-tmp
2195 @echo gdbtypes > init.l-tmp
2196 @-LANG=C ; export LANG ; \
2197 LC_ALL=C ; export LC_ALL ; \
2198 echo $(INIT_FILES) | \
2201 -e '/^gdbtypes.[co]$$/d' \
2202 -e '/^init.[co]$$/d' \
2203 -e '/xdr_ld.[co]$$/d' \
2204 -e '/xdr_ptrace.[co]$$/d' \
2205 -e '/xdr_rdb.[co]$$/d' \
2206 -e '/udr.[co]$$/d' \
2207 -e '/udip2soc.[co]$$/d' \
2208 -e '/udi2go32.[co]$$/d' \
2209 -e '/version.[co]$$/d' \
2210 -e '/^[a-z0-9A-Z_]*_[SU].[co]$$/d' \
2211 -e '/[a-z0-9A-Z_]*-exp.tab.[co]$$/d' \
2212 -e 's/-exp\.o$$/-exp.y/' \
2213 -e 's/\.[co]$$/.c/' \
2214 -e 's,signals\.c,common/signals\.c,' \
2215 -e 's|^\([^ /][^ ]*\)|$(srcdir)/\1|g' | \
2217 sed -n -e 's/^_initialize_\([a-z_0-9A-Z]*\).*/\1/p' $$f 2>/dev/null; \
2222 * ) echo $$f ; fs="$$fs $$f";; \
2225 @echo '/* Do not modify this file. */' >>init.c-tmp
2226 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
2227 @echo '#include "defs.h" /* For initialize_file_ftype. */' >>init.c-tmp
2228 @echo 'extern void initialize_all_files(void);' >>init.c-tmp
2229 @sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp
2230 @echo 'void' >>init.c-tmp
2231 @echo 'initialize_all_files (void)' >>init.c-tmp
2232 @echo '{' >>init.c-tmp
2233 @sed -e 's/\(.*\)/ _initialize_\1 ();/' <init.l-tmp >>init.c-tmp
2234 @echo '}' >>init.c-tmp
2236 @mv init.c-tmp init.c
2240 # Create a library of the gdb object files and build GDB by linking
2243 # init.o is very important. It pulls in the rest of GDB.
2244 LIBGDB_OBS = $(COMMON_OBS) $(TSOBS) $(ADD_FILES) init.o
2245 libgdb.a: $(LIBGDB_OBS)
2247 $(AR) q libgdb.a $(LIBGDB_OBS)
2250 # Removing the old gdb first works better if it is running, at least on SunOS.
2251 gdb$(EXEEXT): gdb.o $(LIBGDB_OBS) $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
2253 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
2254 -o gdb$(EXEEXT) gdb.o $(LIBGDB_OBS) \
2255 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
2257 # Convenience rule to handle recursion.
2258 $(LIBGNU) $(GNULIB_H): all-lib
2259 all-lib: $(GNULIB_BUILDDIR)/Makefile
2260 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=$(GNULIB_BUILDDIR) subdir_do
2263 # Convenience rule to handle recursion.
2264 .PHONY: all-data-directory
2265 all-data-directory: data-directory/Makefile
2266 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=data-directory subdir_do
2268 # This is useful when debugging GDB, because some Unix's don't let you run GDB
2269 # on itself without copying the executable. So "make gdb1" will make
2270 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
2271 # Removing gdb1 before the copy is the right thing if gdb1 is open
2272 # in another process.
2273 gdb1$(EXEEXT): gdb$(EXEEXT)
2275 cp gdb$(EXEEXT) gdb1$(EXEEXT)
2277 # Put the proper machine-specific files first, so M-. on a machine
2278 # specific routine gets the one for the correct machine. (FIXME: those
2279 # files go in twice; we should be removing them from the main list).
2281 # TAGS depends on all the files that go into it so you can rebuild TAGS
2282 # with `make TAGS' and not have to say `rm TAGS' first.
2284 GDB_NM_FILE = @GDB_NM_FILE@
2285 TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
2287 etags `(test -n "$(GDB_NM_FILE)" && echo "$(srcdir)/$(GDB_NM_FILE)")` \
2288 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
2289 echo $(srcdir)/$$i ; \
2290 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
2292 done) | sed -e 's/\.o$$/\.c/'` \
2293 `find $(srcdir)/config -name '*.h' -print`
2297 clean mostlyclean: $(CONFIG_CLEAN)
2298 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(CLEANDIRS)" subdir_do
2299 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp
2300 rm -f init.c version.c observer.h observer.inc
2301 rm -f gdb$(EXEEXT) core make.log
2302 rm -f gdb[0-9]$(EXEEXT)
2303 rm -f test-cp-name-parser$(EXEEXT)
2304 rm -f xml-builtin.c stamp-xml
2306 for i in $(CONFIG_SRC_SUBDIR); do \
2308 rm -f $$i/$(DEPDIR)/*; \
2311 # This used to depend on c-exp.c m2-exp.c TAGS
2312 # I believe this is wrong; the makefile standards for distclean just
2313 # describe removing files; the only sort of "re-create a distribution"
2314 # functionality described is if the distributed files are unmodified.
2315 # NB: While GDBSERVER might be configured on native systems, it isn't
2316 # always included in SUBDIRS. Remove the gdbserver files explicitly.
2318 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do
2319 rm -rf $(GNULIB_BUILDDIR)
2320 rm -f gdbserver/config.status gdbserver/config.log
2321 rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
2322 rm -f gdbserver/Makefile gdbserver/config.cache
2323 rm -f nm.h config.status config.h stamp-h gdb-gdb.gdb jit-reader.h
2324 rm -f y.output yacc.acts yacc.tmp y.tab.h
2325 rm -f config.log config.cache
2328 for i in $(CONFIG_SRC_SUBDIR); do \
2329 rmdir $$i/$(DEPDIR); \
2332 maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
2333 realclean: maintainer-clean
2335 local-maintainer-clean:
2336 @echo "This command is intended for maintainers to use;"
2337 @echo "it deletes files that may require special tools to rebuild."
2340 ada-lex.c ada-exp.c \
2341 d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c rust-exp.c
2342 rm -f TAGS $(INFOFILES)
2344 rm -f nm.h config.status
2346 do-maintainer-clean:
2347 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(CLEANDIRS)" \
2350 diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS)
2351 cd doc; $(MAKE) $(MFLAGS) diststuff
2354 @for i in $(DODIRS); do \
2356 $(REQUIRED_SUBDIRS)) \
2357 if [ ! -f ./$$i/Makefile ] ; then \
2358 echo "Missing $$i/Makefile" >&2 ; \
2362 if [ -f ./$$i/Makefile ] ; then \
2364 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
2365 else exit 1 ; fi ; \
2369 Makefile: Makefile.in config.status
2370 # Regenerate the Makefile and the tm.h / nm.h links.
2371 CONFIG_FILES="Makefile" \
2374 $(SHELL) config.status
2376 $(GNULIB_BUILDDIR)/Makefile: gnulib/Makefile.in config.status
2377 @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
2378 CONFIG_COMMANDS="depfiles" \
2381 $(SHELL) config.status
2383 data-directory/Makefile: data-directory/Makefile.in config.status
2384 CONFIG_FILES="data-directory/Makefile" \
2385 CONFIG_COMMANDS="depfiles" \
2388 $(SHELL) config.status
2392 ./gdb$(EXEEXT) --data-directory=`pwd`/data-directory $(GDBFLAGS)
2394 jit-reader.h: $(srcdir)/jit-reader.in
2395 $(SHELL) config.status $@
2397 gcore: $(srcdir)/gcore.in
2398 $(SHELL) config.status $@
2400 config.h: stamp-h ; @true
2401 stamp-h: $(srcdir)/config.in config.status
2402 CONFIG_HEADERS=config.h:config.in \
2403 CONFIG_COMMANDS="default depdir" \
2406 $(SHELL) config.status
2408 config.status: $(srcdir)/configure configure.tgt configure.host ../bfd/development.sh
2409 $(SHELL) config.status --recheck
2412 ACLOCAL_AMFLAGS = -I ../config
2414 # Keep these in sync with the includes in acinclude.m4.
2417 acx_configure_dir.m4 \
2421 ../config/acinclude.m4 \
2422 ../config/plugins.m4 \
2423 ../config/lead-dot.m4 \
2424 ../config/override.m4 \
2425 ../config/largefile.m4 \
2426 ../config/gettext-sister.m4 \
2427 ../config/lib-ld.m4 \
2428 ../config/lib-prefix.m4 \
2429 ../config/lib-link.m4 \
2432 ../config/depstand.m4 \
2433 ../config/lcmessage.m4 \
2434 ../config/codeset.m4 \
2437 $(srcdir)/aclocal.m4: @MAINTAINER_MODE_TRUE@ $(aclocal_m4_deps)
2438 cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
2441 configure_deps = $(srcdir)/configure.ac $(srcdir)/aclocal.m4
2442 $(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(configure_deps)
2443 cd $(srcdir) && $(AUTOCONF)
2445 AUTOHEADER = autoheader
2446 $(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(configure_deps)
2447 cd $(srcdir) && $(AUTOHEADER)
2451 # automatic rebuilding in automake-generated Makefiles requires
2452 # this rule in the toplevel Makefile, which, with GNU make, causes
2453 # the desired updates through the implicit regeneration of the Makefile
2454 # and all of its prerequisites.
2461 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
2463 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
2465 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
2467 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
2469 # GDB MANUAL: TeX dvi file
2471 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
2473 # GDB MANUAL: info file
2475 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
2477 # Make copying.c from COPYING
2478 $(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ $(srcdir)/../COPYING3 $(srcdir)/copying.awk
2479 awk -f $(srcdir)/copying.awk \
2480 < $(srcdir)/../COPYING3 > $(srcdir)/copying.tmp
2481 mv $(srcdir)/copying.tmp $(srcdir)/copying.c
2483 version.c: Makefile version.in $(srcdir)/../bfd/version.h $(srcdir)/common/create-version.sh
2484 $(SHELL) $(srcdir)/common/create-version.sh $(srcdir) \
2485 $(host_alias) $(target_alias) version.c
2487 observer.h: observer.sh doc/observer.texi
2488 ${srcdir}/observer.sh h ${srcdir}/doc/observer.texi observer.h
2490 observer.inc: observer.sh doc/observer.texi
2491 ${srcdir}/observer.sh inc ${srcdir}/doc/observer.texi observer.inc
2494 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
2495 `echo $(DEPFILES) $(CONFIG_OBS) | sed 's/\.o /\.c /g'`
2497 gdb.cxref: $(SFILES)
2498 cxref -I. $(SFILES) >gdb.cxref
2502 # GNU Make has an annoying habit of putting *all* the Makefile variables
2503 # into the environment, unless you include this target as a circumvention.
2504 # Rumor is that this will be fixed (and this target can be removed)
2508 # GNU Make 3.63 has a different problem: it keeps tacking command line
2509 # overrides onto the definition of $(MAKE). This variable setting
2514 aarch64-fbsd-nat.c \
2515 aarch64-fbsd-tdep.c \
2516 aarch64-linux-nat.c \
2517 aarch64-linux-tdep.c \
2518 aarch64-newlib-tdep.c \
2524 alpha-linux-tdep.c \
2525 alpha-mdebug-tdep.c \
2530 amd64-darwin-tdep.c \
2531 amd64-dicos-tdep.c \
2535 amd64-linux-tdep.c \
2548 arm-get-next-pcs.c \
2555 arm-symbian-tdep.c \
2585 i386-cygwin-tdep.c \
2587 i386-darwin-tdep.c \
2604 ia64-libunwind-tdep.c \
2625 microblaze-linux-tdep.c \
2637 mips64-obsd-tdep.c \
2642 nios2-linux-tdep.c \
2655 ppc-ravenscar-thread.c \
2659 ravenscar-thread.c \
2662 rs6000-lynx178-tdep.c \
2682 sparc-linux-tdep.c \
2687 sparc-ravenscar-thread.c \
2691 sparc64-fbsd-nat.c \
2692 sparc64-fbsd-tdep.c \
2693 sparc64-linux-nat.c \
2694 sparc64-linux-tdep.c \
2696 sparc64-nbsd-nat.c \
2697 sparc64-nbsd-tdep.c \
2698 sparc64-obsd-nat.c \
2699 sparc64-obsd-tdep.c \
2700 sparc64-sol2-tdep.c \
2705 tilegx-linux-nat.c \
2706 tilegx-linux-tdep.c \
2718 xtensa-linux-nat.c \
2719 xtensa-linux-tdep.c \
2722 common/mingw-strerror.c \
2723 common/posix-strerror.c
2725 # Some files need explicit build rules (due to -Werror problems) or due
2726 # to sub-directory fun 'n' games.
2728 # Do not try to build "printcmd.c" with -Wformat-nonliteral. It manually
2729 # checks format strings.
2730 printcmd.o: $(srcdir)/printcmd.c
2731 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_FORMAT) \
2732 $(COMPILE.post) $(srcdir)/printcmd.c
2735 # Same for "doublest.c".
2736 doublest.o: $(srcdir)/doublest.c
2737 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_FORMAT) \
2738 $(COMPILE.post) $(srcdir)/doublest.c
2740 # ada-exp.c can appear in srcdir, for releases; or in ., for
2741 # development builds.
2742 ADA_EXP_C = `if test -f ada-exp.c; then echo ada-exp.c; else echo $(srcdir)/ada-exp.c; fi`
2744 # Some versions of flex give output that triggers
2745 # -Wold-style-definition.
2746 ada-exp.o: ada-exp.c
2747 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_DEFS) \
2748 $(COMPILE.post) $(ADA_EXP_C)
2751 # Message files. Based on code in gcc/Makefile.in.
2753 # Rules for generating translated message descriptions. Disabled by
2754 # autoconf if the tools are not available.
2756 .PHONY: all-po install-po uninstall-po clean-po update-po $(PACKAGE).pot
2760 # This notation should be acceptable to all Make implementations used
2761 # by people who are interested in updating .po files.
2762 update-po: $(CATALOGS:.gmo=.pox)
2764 # N.B. We do not attempt to copy these into $(srcdir). The snapshot
2767 -test -d po || mkdir po
2768 $(GMSGFMT) --statistics -o $@ $<
2770 # The new .po has to be gone over by hand, so we deposit it into
2771 # build/po with a different extension. If build/po/$(PACKAGE).pot
2772 # exists, use it (it was just created), else use the one in srcdir.
2774 -test -d po || mkdir po
2775 $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
2776 then echo po/$(PACKAGE).pot; \
2777 else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
2779 # This rule has to look for .gmo modules in both srcdir and the cwd,
2780 # and has to check that we actually have a catalog for each language,
2781 # in case they weren't built or included with the distribution.
2783 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(datadir)
2784 cats="$(CATALOGS)"; for cat in $$cats; do \
2785 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
2786 if [ -f $$cat ]; then :; \
2787 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
2790 dir=$(localedir)/$$lang/LC_MESSAGES; \
2791 echo $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir; \
2792 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir || exit 1; \
2793 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
2794 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
2797 cats="$(CATALOGS)"; for cat in $$cats; do \
2798 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
2799 if [ -f $$cat ]; then :; \
2800 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
2803 dir=$(localedir)/$$lang/LC_MESSAGES; \
2804 rm -f $(DESTDIR)$$dir/$(PACKAGE).mo; \
2806 # Delete po/*.gmo only if we are not building in the source directory.
2808 -if [ ! -f Makefile.in ]; then rm -f po/*.gmo; fi
2810 # Rule for regenerating the message template (gdb.pot). Instead of
2811 # forcing everyone to edit POTFILES.in, which proved impractical, this
2812 # rule has no dependencies and always regenerates gdb.pot. This is
2813 # relatively harmless since the .po files do not directly depend on
2814 # it. The .pot file is left in the build directory. Since GDB's
2815 # Makefile lacks a cannonical list of sources (missing xm, tm and nm
2816 # files) force this rule.
2817 $(PACKAGE).pot: po/$(PACKAGE).pot
2818 po/$(PACKAGE).pot: force
2819 -test -d po || mkdir po
2820 sh -e $(srcdir)/po/gdbtext $(XGETTEXT) $(PACKAGE) . $(srcdir)
2824 # YACC/LEX dependencies
2826 # LANG-exp.c is generated in objdir from LANG-exp.y if it doesn't
2827 # exist in srcdir, then compiled in objdir to LANG-exp.o. If we
2828 # said LANG-exp.c rather than ./c-exp.c some makes would
2829 # sometimes re-write it into $(srcdir)/c-exp.c. Remove bogus
2830 # decls for malloc/realloc/free which conflict with everything else.
2831 # Strictly speaking c-exp.c should therefore depend on
2832 # Makefile.in, but that was a pretty big annoyance.
2836 $(SHELL) $(YLWRAP) $< y.tab.c $@ -- $(YACC) $(YFLAGS) && mv $@ $@.tmp \
2837 || (rm -f $@; false)
2838 sed -e '/extern.*malloc/d' \
2839 -e '/extern.*realloc/d' \
2840 -e '/extern.*free/d' \
2841 -e '/include.*malloc.h/d' \
2842 -e 's/\([^x]\)malloc/\1xmalloc/g' \
2843 -e 's/\([^x]\)realloc/\1xrealloc/g' \
2844 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
2845 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
2846 -e '/^#line.*y.tab.c/d' \
2847 -e 's/YY_NULL/YY_NULLPTR/g' \
2851 if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \
2852 $(FLEX) -o$@ $< && \
2854 sed -e '/extern.*malloc/d' \
2855 -e '/extern.*realloc/d' \
2856 -e '/extern.*free/d' \
2857 -e '/include.*malloc.h/d' \
2858 -e 's/\([^x]\)malloc/\1xmalloc/g' \
2859 -e 's/\([^x]\)realloc/\1xrealloc/g' \
2860 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
2861 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
2862 -e 's/yy_flex_xrealloc/yyxrealloc/g' \
2866 elif [ -f $@ ]; then \
2867 echo "Warning: $*.c older than $*.l and flex not available."; \
2869 echo "$@ missing and flex not available."; \
2873 .PRECIOUS: ada-lex.c
2877 xml-builtin.c: stamp-xml; @true
2878 stamp-xml: $(srcdir)/features/feature_to_c.sh Makefile $(XMLFILES)
2879 rm -f xml-builtin.tmp
2881 $(SHELL) $(srcdir)/features/feature_to_c.sh \
2882 xml-builtin.tmp $(XMLFILES)
2883 $(SHELL) $(srcdir)/../move-if-change xml-builtin.tmp xml-builtin.c
2884 echo stamp > stamp-xml
2886 .PRECIOUS: xml-builtin.c
2889 # GDBTK sub-directory
2892 all-gdbtk: insight$(EXEEXT)
2895 transformed_name=`t='$(program_transform_name)'; \
2896 echo insight | sed -e $$t` ; \
2897 if test "x$$transformed_name" = x; then \
2898 transformed_name=insight ; \
2902 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
2903 $(INSTALL_PROGRAM) insight$(EXEEXT) \
2904 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2905 $(SHELL) $(srcdir)/../mkinstalldirs \
2906 $(DESTDIR)$(GDBTK_LIBRARY) ; \
2907 $(SHELL) $(srcdir)/../mkinstalldirs \
2908 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION) ; \
2909 $(INSTALL_DATA) $(srcdir)/gdbtk/plugins/plugins.tcl \
2910 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION)/plugins.tcl ; \
2911 $(SHELL) $(srcdir)/../mkinstalldirs \
2912 $(DESTDIR)$(GDBTK_LIBRARY)/images \
2913 $(DESTDIR)$(GDBTK_LIBRARY)/images2 ; \
2914 $(SHELL) $(srcdir)/../mkinstalldirs \
2915 $(DESTDIR)$(GDBTK_LIBRARY)/help \
2916 $(DESTDIR)$(GDBTK_LIBRARY)/help/images \
2917 $(DESTDIR)$(GDBTK_LIBRARY)/help/trace ; \
2918 cd $(srcdir)/gdbtk/library ; \
2919 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; \
2921 $(INSTALL_DATA) $$i $(DESTDIR)$(GDBTK_LIBRARY)/$$i ; \
2925 transformed_name=`t='$(program_transform_name)'; \
2926 echo insight | sed -e $$t` ; \
2927 if test "x$$transformed_name" = x; then \
2928 transformed_name=insight ; \
2932 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2933 rm -rf $(DESTDIR)$(GDBTK_LIBRARY)
2936 rm -f insight$(EXEEXT)
2938 # Removing the old gdb first works better if it is running, at least on SunOS.
2939 insight$(EXEEXT): gdbtk-main.o libgdb.a $(ADD_DEPS) \
2940 $(CDEPS) $(TDEPLIBS)
2941 rm -f insight$(EXEEXT)
2942 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
2943 -o insight$(EXEEXT) gdbtk-main.o libgdb.a \
2944 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
2946 gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
2947 $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
2949 all_gdbtk_cflags = $(IDE_CFLAGS) $(ITCL_CFLAGS) \
2950 $(ITK_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
2952 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" \
2953 -DSRC_DIR=\"$(GDBTK_SRC_DIR)\"
2956 # Dependency tracking.
2959 ifeq ($(DEPMODE),depmode=gcc3)
2960 # Note that we put the dependencies into a .Tpo file, then move them
2961 # into place if the compile succeeds. We need this because gcc does
2962 # not atomically write the dependency output file.
2963 override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
2964 -MF $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo
2965 override POSTCOMPILE = @mv $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo \
2966 $(@D)/$(DEPDIR)/$(basename $(@F)).Po
2968 override COMPILE.pre = source='$<' object='$@' libtool=no \
2969 DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) \
2970 $(CXX) -x c++ $(CXX_DIALECT)
2971 # depcomp handles atomicity for us, so we don't need a postcompile
2973 override POSTCOMPILE =
2976 # A list of all the objects we might care about in this build, for
2977 # dependency tracking.
2978 all_object_files = gdb.o $(LIBGDB_OBS) gdbtk-main.o \
2979 test-cp-name-parser.o
2981 # Ensure that generated files are created early. Use order-only
2982 # dependencies if available. They require GNU make 3.80 or newer,
2983 # and the .VARIABLES variable was introduced at the same time.
2985 $(all_object_files): | $(generated_files)
2987 $(all_object_files) : $(generated_files)
2991 -include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
2993 # Disable implicit make rules.
2994 include $(srcdir)/disable-implicit-rules.mk
2996 ### end of the gdb Makefile.in.