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 # Build the ser-*.o files the host supports. This includes ser-unix.o
733 # for any system that supports a POSIX interface to the serial port.
735 SER_HARDWIRE = @SER_HARDWIRE@
737 # The `remote' debugging target is supported for most architectures,
738 # but not all (e.g. 960)
751 # This is remote-sim.o if a simulator is to be linked in.
754 # Target-dependent object files.
755 TARGET_OBS = @TARGET_OBS@
757 # All target-dependent objects files that require 64-bit CORE_ADDR
758 # (used with --enable-targets=all --enable-64-bit-bfd).
759 ALL_64_TARGET_OBS = \
760 aarch64-fbsd-tdep.o \
761 aarch64-linux-tdep.o \
762 aarch64-newlib-tdep.o \
766 alpha-mdebug-tdep.o \
770 amd64-darwin-tdep.o \
778 amd64-windows-tdep.o \
779 arch/aarch64-insn.o \
785 sparc64-fbsd-tdep.o \
786 sparc64-linux-tdep.o \
787 sparc64-nbsd-tdep.o \
788 sparc64-obsd-tdep.o \
789 sparc64-sol2-tdep.o \
792 # All other target-dependent objects files (used with --enable-targets=all).
796 arch/arm-get-next-pcs.o \
852 microblaze-linux-tdep.o \
859 mn10300-linux-tdep.o \
874 ppc-ravenscar-thread.o \
880 rs6000-lynx178-tdep.o \
899 sparc-ravenscar-thread.o \
907 tilegx-linux-tdep.o \
916 xtensa-linux-tdep.o \
919 # The following native-target dependent variables are defined on
921 NAT_FILE = @NAT_FILE@
922 NATDEPFILES = @NATDEPFILES@
923 NAT_CDEPS = @NAT_CDEPS@
924 LOADLIBES = @LOADLIBES@
925 MH_CFLAGS = @MH_CFLAGS@
926 XM_CLIBS = @XM_CLIBS@
927 NAT_GENERATED_FILES = @NAT_GENERATED_FILES@
928 HAVE_NATIVE_GCORE_HOST = @HAVE_NATIVE_GCORE_HOST@
930 # Native-target dependent makefile fragment comes in here.
933 # End of native-target dependent variables.
937 "exec_prefix=$(exec_prefix)" \
938 "infodir=$(infodir)" \
939 "datarootdir=$(datarootdir)" \
941 "htmldir=$(htmldir)" \
945 "datadir=$(datadir)" \
946 "includedir=$(includedir)" \
947 "against=$(against)" \
948 "DESTDIR=$(DESTDIR)" \
950 "AR_FLAGS=$(AR_FLAGS)" \
954 "CXX_DIALECT=$(CXX_DIALECT)" \
955 "CXXFLAGS=$(CXXFLAGS)" \
956 "DLLTOOL=$(DLLTOOL)" \
957 "LDFLAGS=$(LDFLAGS)" \
959 "MAKEINFO=$(MAKEINFO)" \
960 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
961 "MAKEINFO_EXTRA_FLAGS=$(MAKEINFO_EXTRA_FLAGS)" \
962 "MAKEHTML=$(MAKEHTML)" \
963 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
964 "INSTALL=$(INSTALL)" \
965 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
966 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
967 "INSTALL_DATA=$(INSTALL_DATA)" \
968 "RUNTEST=$(RUNTEST)" \
969 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
971 # Flags that we pass when building the testsuite.
973 # empty for native, $(target_alias)/ for cross
974 target_subdir = @target_subdir@
977 if [ -f $${rootme}/../gcc/xgcc ] ; then \
978 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
979 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/; \
981 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
984 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
987 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
992 if [ -f $${rootme}/../gcc/xg++ ] ; then \
993 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
994 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/; \
996 echo $${rootme}/../gcc/xg++ -B$${rootme}/../gcc/; \
999 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
1002 t='$(program_transform_name)'; echo g++ | sed -e '' $$t; \
1006 # The use of $$(x_FOR_TARGET) reduces the command line length by not
1007 # duplicating the lengthy definition.
1008 TARGET_FLAGS_TO_PASS = \
1009 "prefix=$(prefix)" \
1010 "exec_prefix=$(exec_prefix)" \
1011 "against=$(against)" \
1012 'CC=$$(CC_FOR_TARGET)' \
1013 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
1014 "CFLAGS=$(CFLAGS)" \
1015 'CXX=$$(CXX_FOR_TARGET)' \
1016 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
1017 "CXXFLAGS=$(CXXFLAGS)" \
1018 "INSTALL=$(INSTALL)" \
1019 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
1020 "INSTALL_DATA=$(INSTALL_DATA)" \
1021 "MAKEINFO=$(MAKEINFO)" \
1022 "MAKEHTML=$(MAKEHTML)" \
1023 "RUNTEST=$(RUNTEST)" \
1024 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
1025 "FORCE_PARALLEL=$(FORCE_PARALLEL)" \
1028 # All source files that go into linking GDB.
1029 # Links made at configuration time should not be specified here, since
1030 # SFILES is used in building the distribution archive.
1053 break-catch-syscall.c \
1054 break-catch-throw.c \
1088 disasm-selftests.c \
1092 dwarf2-frame-tailcall.c \
1121 gdbarch-selftests.c \
1177 progspace-and-thread.c \
1214 target-descriptions.c \
1238 common/btrace-common.c \
1241 common/common-debug.c \
1242 common/common-exceptions.c \
1243 common/common-regcache.c \
1244 common/common-utils.c \
1248 common/filestuff.c \
1250 common/job-control.c \
1251 common/gdb_tilde_expand.c \
1254 common/print-utils.c \
1257 common/run-time-clock.c \
1260 common/signals-state-save-restore.c \
1262 common/xml-utils.c \
1264 target/waitstatus.c \
1265 $(SUBDIR_GCC_COMPILE_SRCS)
1267 LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
1269 # Header files that need to have srcdir added. Note that in the cases
1270 # where we use a macro like $(gdbcmd_h), things are carefully arranged
1271 # so that each .h file is listed exactly once (M-x tags-search works
1272 # wrong if TAGS has files twice). Because this is tricky to get
1273 # right, it is probably easiest just to list .h files here directly.
1275 HFILES_NO_SRCDIR = \
1281 amd64-darwin-tdep.h \
1282 amd64-linux-tdep.h \
1323 dwarf2-frame-tailcall.h \
1348 gdb_proc_service.h \
1365 hppa-linux-offsets.h \
1368 i386-darwin-tdep.h \
1373 ia64-libunwind-tdep.h \
1426 ppc-ravenscar-thread.h \
1433 progspace-and-thread.h \
1437 ravenscar-thread.h \
1471 sparc-ravenscar-thread.h \
1482 target-descriptions.h \
1511 arch/aarch64-insn.h \
1521 common/common-debug.h \
1522 common/common-defs.h \
1523 common/common-exceptions.h \
1524 common/common-gdbthread.h \
1525 common/common-regcache.h \
1526 common/common-types.h \
1527 common/common-utils.h \
1528 common/job-control.h \
1533 common/gdb_assert.h \
1534 common/gdb_tilde_expand.h \
1535 common/gdb_locale.h \
1536 common/gdb_setjmp.h \
1537 common/gdb_signals.h \
1538 common/gdb_sys_time.h \
1541 common/common-inferior.h \
1542 common/host-defs.h \
1543 common/print-utils.h \
1547 common/run-time-clock.h \
1548 common/signals-state-save-restore.h \
1552 common/x86-xstate.h \
1553 common/xml-utils.h \
1557 config/djgpp/langinfo.h \
1558 config/djgpp/nl_types.h \
1559 config/i386/nm-fbsd.h \
1560 config/i386/nm-i386gnu.h \
1561 config/sparc/nm-sol2.h \
1562 gnulib/import/inttypes.in.h \
1563 gnulib/import/stddef.in.h \
1564 gnulib/import/stdint.in.h \
1565 gnulib/import/str-two-way.h \
1566 gnulib/import/string.in.h \
1567 gnulib/import/extra/snippet/arg-nonnull.h \
1568 gnulib/import/extra/snippet/c++defs.h \
1569 gnulib/import/extra/snippet/warn-on-use.h \
1577 nat/aarch64-linux.h \
1578 nat/aarch64-linux-hw-point.h \
1579 nat/amd64-linux-siginfo.h \
1581 nat/gdb_thread_db.h \
1582 nat/fork-inferior.h \
1583 nat/linux-btrace.h \
1584 nat/linux-namespaces.h \
1586 nat/linux-osdata.h \
1587 nat/linux-personality.h \
1588 nat/linux-ptrace.h \
1589 nat/linux-waitpid.h \
1590 nat/mips-linux-watch.h \
1594 nat/x86-gcc-cpuid.h \
1596 nat/x86-linux-dregs.h \
1598 python/py-events.h \
1599 python/py-stopevent.h \
1601 python/python-internal.h \
1602 regformats/regdef.h \
1606 target/waitstatus.h \
1620 tui/tui-wingeneral.h \
1623 # Header files that already have srcdir in them, or which are in objdir.
1625 HFILES_WITH_SRCDIR = \
1629 # GDB "info" files, which should be included in their entirety
1630 INFOFILES = gdb.info*
1632 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
1633 # default their values the way we do for SER_HARDWIRE; in the future
1634 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
1635 # variables analogous to SER_HARDWIRE which get defaulted in this
1638 DEPFILES = $(TARGET_OBS) $(SER_HARDWIRE) $(NATDEPFILES) \
1639 $(REMOTE_OBS) $(SIM_OBS)
1641 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
1642 # Don't include YYFILES (*.c) because we already include *.y in SFILES,
1643 # and it's more useful to see it in the .y file.
1644 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
1646 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
1648 COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
1665 break-catch-syscall.o \
1666 break-catch-throw.o \
1684 common-exceptions.o \
1706 disasm-selftests.o \
1709 dwarf2-frame-tailcall.o \
1726 filename-seen-cache.o \
1737 gdb_tilde_expand.o \
1744 gdbarch-selftests.o \
1798 progspace-and-thread.o \
1818 signals-state-save-restore.o \
1832 target-descriptions.o \
1859 $(SUBDIR_GCC_COMPILE_OBS)
1863 SUBDIRS = doc @subdirs@ data-directory $(GNULIB_BUILDDIR)
1864 CLEANDIRS = $(SUBDIRS)
1866 # List of subdirectories in the build tree that must exist.
1867 # This is used to force build failures in existing trees when
1868 # a new directory is added.
1869 # The format here is for the `case' shell command.
1870 REQUIRED_SUBDIRS = doc | testsuite | $(GNULIB_BUILDDIR) | data-directory
1872 # For now, shortcut the "configure GDB for fewer languages" stuff.
1896 # Things which need to be built when making a distribution.
1898 DISTSTUFF = $(YYFILES)
1901 # All generated files which can be included by another file.
1910 $(NAT_GENERATED_FILES)
1912 # Flags needed to compile Python code
1913 PYTHON_CFLAGS = @PYTHON_CFLAGS@
1915 all: gdb$(EXEEXT) $(CONFIG_ALL)
1916 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
1918 # Rule for compiling .c files in the top-level gdb directory.
1923 # Rules for compiling .c files in the various source subdirectories.
1924 %.o: $(srcdir)/cli/%.c
1928 %.o: ${srcdir}/common/%.c
1932 %.o: $(srcdir)/compile/%.c
1936 %.o: $(srcdir)/gdbtk/generic/%.c
1937 $(COMPILE) $(all_gdbtk_cflags) $<
1940 %.o: $(srcdir)/guile/%.c
1944 %.o: $(srcdir)/mi/%.c
1948 %.o: ${srcdir}/nat/%.c
1952 %.o: $(srcdir)/python/%.c
1953 $(COMPILE) $(PYTHON_CFLAGS) $<
1956 %.o: ${srcdir}/target/%.c
1960 %.o: $(srcdir)/tui/%.c
1964 %.o: ${srcdir}/unittests/%.c
1968 # Specify an explicit rule for gdb/common/agent.c, to avoid a clash with the
1969 # object file generate by gdb/agent.c.
1970 common-agent.o: $(srcdir)/common/agent.c
1971 $(COMPILE) $(srcdir)/common/agent.c
1976 # The check target can not use subdir_do, because subdir_do does not
1977 # use TARGET_FLAGS_TO_PASS.
1979 @if [ -f testsuite/Makefile ]; then \
1980 rootme=`pwd`; export rootme; \
1981 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1983 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
1987 @if [ -f testsuite/Makefile ]; then \
1988 rootme=`pwd`; export rootme; \
1989 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1991 $(MAKE) $(TARGET_FLAGS_TO_PASS) check-perf; \
1995 @if [ -f testsuite/Makefile ]; then \
1996 rootme=`pwd`; export rootme; \
1997 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1999 $(MAKE) $(TARGET_FLAGS_TO_PASS) check-read1; \
2002 check-parallel: force
2003 @if [ -f testsuite/Makefile ]; then \
2004 rootme=`pwd`; export rootme; \
2005 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
2007 $(MAKE) $(TARGET_FLAGS_TO_PASS) check-parallel; \
2010 # The idea is to parallelize testing of multilibs, for example:
2011 # make -j3 check//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
2012 # will run 3 concurrent sessions of check, eventually testing all 10
2013 # combinations. GNU make is required for the % pattern to work, as is
2014 # a shell that expands alternations within braces. If GNU make is not
2015 # used, this rule will harmlessly fail to match. Used FORCE_PARALLEL to
2016 # prevent serialized checking due to the passed RUNTESTFLAGS.
2017 # FIXME: use config.status --config not --version, when available.
2019 @if [ -f testsuite/config.status ]; then \
2020 rootme=`pwd`; export rootme; \
2021 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
2022 target=`echo "$@" | sed 's,//.*,,'`; \
2023 variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
2024 vardots=`echo "$$variant" | sed 's,/,.,g'`; \
2025 testdir=testsuite.$$vardots; \
2026 if [ ! -f $$testdir/Makefile ] && [ -f testsuite/config.status ]; then \
2027 configargs=`cd testsuite && ./config.status --version | \
2028 sed -n -e 's,"$$,,' -e 's,^ *with options ",,p'`; \
2029 $(SHELL) $(srcdir)/../mkinstalldirs $$testdir && \
2031 eval $(SHELL) "\"\$$rootsrc/testsuite/configure\" $$configargs" \
2032 "\"--srcdir=\$$rootsrc/testsuite\"" \
2034 else :; fi && cd $$testdir && \
2035 $(MAKE) $(TARGET_FLAGS_TO_PASS) \
2036 RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
2037 FORCE_PARALLEL=$(if $(FORCE_PARALLEL),1,$(if $(RUNTESTFLAGS),,1)) \
2041 # The set of headers checked by 'check-headers' by default.
2042 CHECK_HEADERS = $(HFILES_NO_SRCDIR)
2044 # Try to compile each header in isolation, thus ensuring headers are
2047 # Defaults to checking all $HFILES_NO_SRCDIR headers.
2051 # make check-headers CHECK_HEADERS="header.h list.h"
2053 # to check specific headers.
2056 @echo Checking headers.
2057 for i in $(CHECK_HEADERS) ; do \
2058 $(CXX) $(CXX_DIALECT) -x c++-header -c -fsyntax-only \
2059 $(INTERNAL_CFLAGS) -include defs.h $(srcdir)/$$i ; \
2061 .PHONY: check-headers
2063 info install-info clean-info dvi pdf install-pdf html install-html: force
2064 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
2066 # Traditionally "install" depends on "all". But it may be useful
2067 # not to; for example, if the user has made some trivial change to a
2068 # source file and doesn't care about rebuilding or just wants to save the
2069 # time it takes for make to check that all is up to date.
2070 # install-only is intended to address that need.
2072 @$(MAKE) $(FLAGS_TO_PASS) install-only
2074 install-only: $(CONFIG_INSTALL)
2075 transformed_name=`t='$(program_transform_name)'; \
2076 echo gdb | sed -e "$$t"` ; \
2077 if test "x$$transformed_name" = x; then \
2078 transformed_name=gdb ; \
2082 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
2083 $(INSTALL_PROGRAM) gdb$(EXEEXT) \
2084 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2085 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
2086 $(INSTALL_DATA) jit-reader.h $(DESTDIR)$(includedir)/gdb/jit-reader.h
2087 if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
2089 transformed_name=`t='$(program_transform_name)'; \
2090 echo gcore | sed -e "$$t"` ; \
2091 if test "x$$transformed_name" = x; then \
2092 transformed_name=gcore ; \
2096 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
2097 $(INSTALL_SCRIPT) gcore \
2098 $(DESTDIR)$(bindir)/$$transformed_name; \
2100 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
2103 $(MAKE) $(FLAGS_TO_PASS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
2104 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
2105 `test -z '$(STRIP)' || \
2106 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install-only
2109 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/guile/gdb
2112 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/python/gdb
2114 uninstall: force $(CONFIG_UNINSTALL)
2115 transformed_name=`t='$(program_transform_name)'; \
2116 echo gdb | sed -e $$t` ; \
2117 if test "x$$transformed_name" = x; then \
2118 transformed_name=gdb ; \
2122 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
2123 $(DESTDIR)$(man1dir)/$$transformed_name.1
2124 if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
2126 transformed_name=`t='$(program_transform_name)'; \
2127 echo gcore | sed -e "$$t"` ; \
2128 if test "x$$transformed_name" = x; then \
2129 transformed_name=gcore ; \
2133 rm -f $(DESTDIR)$(bindir)/$$transformed_name; \
2135 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
2137 # The C++ name parser can be built standalone for testing.
2138 test-cp-name-parser.o: cp-name-parser.c
2139 $(COMPILE) -DTEST_CPNAMES cp-name-parser.c
2142 test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY)
2143 $(CC_LD) $(INTERNAL_LDFLAGS) -o test-cp-name-parser$(EXEEXT) \
2144 test-cp-name-parser.o $(LIBIBERTY)
2146 # We do this by grepping through sources. If that turns out to be too slow,
2147 # maybe we could just require every .o file to have an initialization routine
2148 # of a given name (top.o -> _initialize_top, etc.).
2150 # Formatting conventions: The name of the _initialize_* routines must start
2151 # in column zero, and must not be inside #if.
2153 # Note that the set of files with init functions might change, or the names
2154 # of the functions might change, so this files needs to depend on all the
2155 # object files that will be linked into gdb.
2157 # FIXME: There is a problem with this approach - init.c may force
2158 # unnecessary files to be linked in.
2160 # FIXME: cagney/2002-06-09: gdb/564: gdb/563: Force the order so that
2161 # the first call is to _initialize_gdbtypes (implemented by explicitly
2162 # putting that function's name first in the init.l-tmp file). This is
2163 # a hack to ensure that all the architecture dependant global
2164 # builtin_type_* variables are initialized before anything else
2165 # (per-architecture code is called in the same order that it is
2166 # registered). The ``correct fix'' is to have all the builtin types
2167 # made part of the architecture and initialize them on-demand (using
2168 # gdbarch_data) just like everything else. The catch is that other
2169 # modules still take the address of these builtin types forcing them
2170 # to be variables, sigh!
2172 # NOTE: cagney/2003-03-18: The sed pattern ``s|^\([^ /]...'' is
2173 # anchored on the first column and excludes the ``/'' character so
2174 # that it doesn't add the $(srcdir) prefix to any file that already
2175 # has an absolute path. It turns out that $(DEC)'s True64 make
2176 # automatically adds the $(srcdir) prefixes when it encounters files
2177 # in sub-directories such as cli/ and mi/.
2179 # NOTE: cagney/2004-02-08: The ``case "$$fs" in'' eliminates
2180 # duplicates. Files in the gdb/ directory can end up appearing in
2181 # COMMON_OBS (as a .o file) and CONFIG_SRCS (as a .c file).
2183 INIT_FILES = $(COMMON_OBS) $(TSOBS) $(CONFIG_SRCS) $(SUBDIR_GCC_COMPILE_SRCS)
2184 init.c: $(INIT_FILES)
2186 @rm -f init.c-tmp init.l-tmp
2188 @echo gdbtypes > init.l-tmp
2189 @-LANG=C ; export LANG ; \
2190 LC_ALL=C ; export LC_ALL ; \
2191 echo $(INIT_FILES) | \
2194 -e '/^gdbtypes.[co]$$/d' \
2195 -e '/^init.[co]$$/d' \
2196 -e '/xdr_ld.[co]$$/d' \
2197 -e '/xdr_ptrace.[co]$$/d' \
2198 -e '/xdr_rdb.[co]$$/d' \
2199 -e '/udr.[co]$$/d' \
2200 -e '/udip2soc.[co]$$/d' \
2201 -e '/udi2go32.[co]$$/d' \
2202 -e '/version.[co]$$/d' \
2203 -e '/^[a-z0-9A-Z_]*_[SU].[co]$$/d' \
2204 -e '/[a-z0-9A-Z_]*-exp.tab.[co]$$/d' \
2205 -e 's/-exp\.o$$/-exp.y/' \
2206 -e 's/\.[co]$$/.c/' \
2207 -e 's,signals\.c,common/signals\.c,' \
2208 -e 's|^\([^ /][^ ]*\)|$(srcdir)/\1|g' | \
2210 sed -n -e 's/^_initialize_\([a-z_0-9A-Z]*\).*/\1/p' $$f 2>/dev/null; \
2215 * ) echo $$f ; fs="$$fs $$f";; \
2218 @echo '/* Do not modify this file. */' >>init.c-tmp
2219 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
2220 @echo '#include "defs.h" /* For initialize_file_ftype. */' >>init.c-tmp
2221 @echo 'extern void initialize_all_files(void);' >>init.c-tmp
2222 @sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp
2223 @echo 'void' >>init.c-tmp
2224 @echo 'initialize_all_files (void)' >>init.c-tmp
2225 @echo '{' >>init.c-tmp
2226 @sed -e 's/\(.*\)/ _initialize_\1 ();/' <init.l-tmp >>init.c-tmp
2227 @echo '}' >>init.c-tmp
2229 @mv init.c-tmp init.c
2233 # Create a library of the gdb object files and build GDB by linking
2236 # init.o is very important. It pulls in the rest of GDB.
2237 LIBGDB_OBS = $(COMMON_OBS) $(TSOBS) $(ADD_FILES) init.o
2238 libgdb.a: $(LIBGDB_OBS)
2240 $(AR) q libgdb.a $(LIBGDB_OBS)
2243 # Removing the old gdb first works better if it is running, at least on SunOS.
2244 gdb$(EXEEXT): gdb.o $(LIBGDB_OBS) $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
2246 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
2247 -o gdb$(EXEEXT) gdb.o $(LIBGDB_OBS) \
2248 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
2250 # Convenience rule to handle recursion.
2251 $(LIBGNU) $(GNULIB_H): all-lib
2252 all-lib: $(GNULIB_BUILDDIR)/Makefile
2253 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=$(GNULIB_BUILDDIR) subdir_do
2256 # Convenience rule to handle recursion.
2257 .PHONY: all-data-directory
2258 all-data-directory: data-directory/Makefile
2259 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=data-directory subdir_do
2261 # This is useful when debugging GDB, because some Unix's don't let you run GDB
2262 # on itself without copying the executable. So "make gdb1" will make
2263 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
2264 # Removing gdb1 before the copy is the right thing if gdb1 is open
2265 # in another process.
2266 gdb1$(EXEEXT): gdb$(EXEEXT)
2268 cp gdb$(EXEEXT) gdb1$(EXEEXT)
2270 # Put the proper machine-specific files first, so M-. on a machine
2271 # specific routine gets the one for the correct machine. (FIXME: those
2272 # files go in twice; we should be removing them from the main list).
2274 # TAGS depends on all the files that go into it so you can rebuild TAGS
2275 # with `make TAGS' and not have to say `rm TAGS' first.
2277 GDB_NM_FILE = @GDB_NM_FILE@
2278 TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
2280 etags `(test -n "$(GDB_NM_FILE)" && echo "$(srcdir)/$(GDB_NM_FILE)")` \
2281 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
2282 echo $(srcdir)/$$i ; \
2283 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
2285 done) | sed -e 's/\.o$$/\.c/'` \
2286 `find $(srcdir)/config -name '*.h' -print`
2290 clean mostlyclean: $(CONFIG_CLEAN)
2291 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(CLEANDIRS)" subdir_do
2292 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp
2293 rm -f init.c version.c observer.h observer.inc
2294 rm -f gdb$(EXEEXT) core make.log
2295 rm -f gdb[0-9]$(EXEEXT)
2296 rm -f test-cp-name-parser$(EXEEXT)
2297 rm -f xml-builtin.c stamp-xml
2299 for i in $(CONFIG_SRC_SUBDIR); do \
2301 rm -f $$i/$(DEPDIR)/*; \
2304 # This used to depend on c-exp.c m2-exp.c TAGS
2305 # I believe this is wrong; the makefile standards for distclean just
2306 # describe removing files; the only sort of "re-create a distribution"
2307 # functionality described is if the distributed files are unmodified.
2308 # NB: While GDBSERVER might be configured on native systems, it isn't
2309 # always included in SUBDIRS. Remove the gdbserver files explicitly.
2311 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do
2312 rm -rf $(GNULIB_BUILDDIR)
2313 rm -f gdbserver/config.status gdbserver/config.log
2314 rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
2315 rm -f gdbserver/Makefile gdbserver/config.cache
2316 rm -f nm.h config.status config.h stamp-h gdb-gdb.gdb jit-reader.h
2317 rm -f y.output yacc.acts yacc.tmp y.tab.h
2318 rm -f config.log config.cache
2321 for i in $(CONFIG_SRC_SUBDIR); do \
2322 rmdir $$i/$(DEPDIR); \
2325 maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
2326 realclean: maintainer-clean
2328 local-maintainer-clean:
2329 @echo "This command is intended for maintainers to use;"
2330 @echo "it deletes files that may require special tools to rebuild."
2333 ada-lex.c ada-exp.c \
2334 d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c rust-exp.c
2335 rm -f TAGS $(INFOFILES)
2337 rm -f nm.h config.status
2339 do-maintainer-clean:
2340 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(CLEANDIRS)" \
2343 diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS)
2344 cd doc; $(MAKE) $(MFLAGS) diststuff
2347 @for i in $(DODIRS); do \
2349 $(REQUIRED_SUBDIRS)) \
2350 if [ ! -f ./$$i/Makefile ] ; then \
2351 echo "Missing $$i/Makefile" >&2 ; \
2355 if [ -f ./$$i/Makefile ] ; then \
2357 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
2358 else exit 1 ; fi ; \
2362 Makefile: Makefile.in config.status
2363 # Regenerate the Makefile and the tm.h / nm.h links.
2364 CONFIG_FILES="Makefile" \
2367 $(SHELL) config.status
2369 $(GNULIB_BUILDDIR)/Makefile: gnulib/Makefile.in config.status
2370 @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
2371 CONFIG_COMMANDS="depfiles" \
2374 $(SHELL) config.status
2376 data-directory/Makefile: data-directory/Makefile.in config.status
2377 CONFIG_FILES="data-directory/Makefile" \
2378 CONFIG_COMMANDS="depfiles" \
2381 $(SHELL) config.status
2385 ./gdb$(EXEEXT) --data-directory=`pwd`/data-directory $(GDBFLAGS)
2387 jit-reader.h: $(srcdir)/jit-reader.in
2388 $(SHELL) config.status $@
2390 gcore: $(srcdir)/gcore.in
2391 $(SHELL) config.status $@
2393 config.h: stamp-h ; @true
2394 stamp-h: $(srcdir)/config.in config.status
2395 CONFIG_HEADERS=config.h:config.in \
2396 CONFIG_COMMANDS="default depdir" \
2399 $(SHELL) config.status
2401 config.status: $(srcdir)/configure configure.tgt configure.host ../bfd/development.sh
2402 $(SHELL) config.status --recheck
2405 ACLOCAL_AMFLAGS = -I ../config
2407 # Keep these in sync with the includes in acinclude.m4.
2410 acx_configure_dir.m4 \
2414 ../config/acinclude.m4 \
2415 ../config/plugins.m4 \
2416 ../config/lead-dot.m4 \
2417 ../config/override.m4 \
2418 ../config/largefile.m4 \
2419 ../config/gettext-sister.m4 \
2420 ../config/lib-ld.m4 \
2421 ../config/lib-prefix.m4 \
2422 ../config/lib-link.m4 \
2425 ../config/depstand.m4 \
2426 ../config/lcmessage.m4 \
2427 ../config/codeset.m4 \
2430 $(srcdir)/aclocal.m4: @MAINTAINER_MODE_TRUE@ $(aclocal_m4_deps)
2431 cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
2434 configure_deps = $(srcdir)/configure.ac $(srcdir)/aclocal.m4
2435 $(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(configure_deps)
2436 cd $(srcdir) && $(AUTOCONF)
2438 AUTOHEADER = autoheader
2439 $(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(configure_deps)
2440 cd $(srcdir) && $(AUTOHEADER)
2444 # automatic rebuilding in automake-generated Makefiles requires
2445 # this rule in the toplevel Makefile, which, with GNU make, causes
2446 # the desired updates through the implicit regeneration of the Makefile
2447 # and all of its prerequisites.
2454 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
2456 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
2458 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
2460 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
2462 # GDB MANUAL: TeX dvi file
2464 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
2466 # GDB MANUAL: info file
2468 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
2470 # Make copying.c from COPYING
2471 $(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ $(srcdir)/../COPYING3 $(srcdir)/copying.awk
2472 awk -f $(srcdir)/copying.awk \
2473 < $(srcdir)/../COPYING3 > $(srcdir)/copying.tmp
2474 mv $(srcdir)/copying.tmp $(srcdir)/copying.c
2476 version.c: Makefile version.in $(srcdir)/../bfd/version.h $(srcdir)/common/create-version.sh
2477 $(SHELL) $(srcdir)/common/create-version.sh $(srcdir) \
2478 $(host_alias) $(target_alias) version.c
2480 observer.h: observer.sh doc/observer.texi
2481 ${srcdir}/observer.sh h ${srcdir}/doc/observer.texi observer.h
2483 observer.inc: observer.sh doc/observer.texi
2484 ${srcdir}/observer.sh inc ${srcdir}/doc/observer.texi observer.inc
2487 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
2488 `echo $(DEPFILES) $(CONFIG_OBS) | sed 's/\.o /\.c /g'`
2490 gdb.cxref: $(SFILES)
2491 cxref -I. $(SFILES) >gdb.cxref
2495 # GNU Make has an annoying habit of putting *all* the Makefile variables
2496 # into the environment, unless you include this target as a circumvention.
2497 # Rumor is that this will be fixed (and this target can be removed)
2501 # GNU Make 3.63 has a different problem: it keeps tacking command line
2502 # overrides onto the definition of $(MAKE). This variable setting
2507 aarch64-fbsd-nat.c \
2508 aarch64-fbsd-tdep.c \
2509 aarch64-linux-nat.c \
2510 aarch64-linux-tdep.c \
2511 aarch64-newlib-tdep.c \
2517 alpha-linux-tdep.c \
2518 alpha-mdebug-tdep.c \
2523 amd64-darwin-tdep.c \
2524 amd64-dicos-tdep.c \
2528 amd64-linux-tdep.c \
2541 arm-get-next-pcs.c \
2548 arm-symbian-tdep.c \
2578 i386-cygwin-tdep.c \
2580 i386-darwin-tdep.c \
2597 ia64-libunwind-tdep.c \
2618 microblaze-linux-tdep.c \
2630 mips64-obsd-tdep.c \
2635 nios2-linux-tdep.c \
2648 ppc-ravenscar-thread.c \
2652 ravenscar-thread.c \
2655 rs6000-lynx178-tdep.c \
2675 sparc-linux-tdep.c \
2680 sparc-ravenscar-thread.c \
2684 sparc64-fbsd-nat.c \
2685 sparc64-fbsd-tdep.c \
2686 sparc64-linux-nat.c \
2687 sparc64-linux-tdep.c \
2689 sparc64-nbsd-nat.c \
2690 sparc64-nbsd-tdep.c \
2691 sparc64-obsd-nat.c \
2692 sparc64-obsd-tdep.c \
2693 sparc64-sol2-tdep.c \
2698 tilegx-linux-nat.c \
2699 tilegx-linux-tdep.c \
2711 xtensa-linux-nat.c \
2712 xtensa-linux-tdep.c \
2715 common/mingw-strerror.c \
2716 common/posix-strerror.c
2718 # Some files need explicit build rules (due to -Werror problems) or due
2719 # to sub-directory fun 'n' games.
2721 # Do not try to build "printcmd.c" with -Wformat-nonliteral. It manually
2722 # checks format strings.
2723 printcmd.o: $(srcdir)/printcmd.c
2724 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_FORMAT) \
2725 $(COMPILE.post) $(srcdir)/printcmd.c
2728 # Same for "target-float.c".
2729 target-float.o: $(srcdir)/target-float.c
2730 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_FORMAT) \
2731 $(COMPILE.post) $(srcdir)/target-float.c
2733 # ada-exp.c can appear in srcdir, for releases; or in ., for
2734 # development builds.
2735 ADA_EXP_C = `if test -f ada-exp.c; then echo ada-exp.c; else echo $(srcdir)/ada-exp.c; fi`
2737 # Some versions of flex give output that triggers
2738 # -Wold-style-definition.
2739 ada-exp.o: ada-exp.c
2740 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_DEFS) \
2741 $(COMPILE.post) $(ADA_EXP_C)
2744 # Message files. Based on code in gcc/Makefile.in.
2746 # Rules for generating translated message descriptions. Disabled by
2747 # autoconf if the tools are not available.
2749 .PHONY: all-po install-po uninstall-po clean-po update-po $(PACKAGE).pot
2753 # This notation should be acceptable to all Make implementations used
2754 # by people who are interested in updating .po files.
2755 update-po: $(CATALOGS:.gmo=.pox)
2757 # N.B. We do not attempt to copy these into $(srcdir). The snapshot
2760 -test -d po || mkdir po
2761 $(GMSGFMT) --statistics -o $@ $<
2763 # The new .po has to be gone over by hand, so we deposit it into
2764 # build/po with a different extension. If build/po/$(PACKAGE).pot
2765 # exists, use it (it was just created), else use the one in srcdir.
2767 -test -d po || mkdir po
2768 $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
2769 then echo po/$(PACKAGE).pot; \
2770 else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
2772 # This rule has to look for .gmo modules in both srcdir and the cwd,
2773 # and has to check that we actually have a catalog for each language,
2774 # in case they weren't built or included with the distribution.
2776 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(datadir)
2777 cats="$(CATALOGS)"; for cat in $$cats; do \
2778 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
2779 if [ -f $$cat ]; then :; \
2780 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
2783 dir=$(localedir)/$$lang/LC_MESSAGES; \
2784 echo $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir; \
2785 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir || exit 1; \
2786 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
2787 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
2790 cats="$(CATALOGS)"; for cat in $$cats; do \
2791 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
2792 if [ -f $$cat ]; then :; \
2793 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
2796 dir=$(localedir)/$$lang/LC_MESSAGES; \
2797 rm -f $(DESTDIR)$$dir/$(PACKAGE).mo; \
2799 # Delete po/*.gmo only if we are not building in the source directory.
2801 -if [ ! -f Makefile.in ]; then rm -f po/*.gmo; fi
2803 # Rule for regenerating the message template (gdb.pot). Instead of
2804 # forcing everyone to edit POTFILES.in, which proved impractical, this
2805 # rule has no dependencies and always regenerates gdb.pot. This is
2806 # relatively harmless since the .po files do not directly depend on
2807 # it. The .pot file is left in the build directory. Since GDB's
2808 # Makefile lacks a cannonical list of sources (missing xm, tm and nm
2809 # files) force this rule.
2810 $(PACKAGE).pot: po/$(PACKAGE).pot
2811 po/$(PACKAGE).pot: force
2812 -test -d po || mkdir po
2813 sh -e $(srcdir)/po/gdbtext $(XGETTEXT) $(PACKAGE) . $(srcdir)
2817 # YACC/LEX dependencies
2819 # LANG-exp.c is generated in objdir from LANG-exp.y if it doesn't
2820 # exist in srcdir, then compiled in objdir to LANG-exp.o. If we
2821 # said LANG-exp.c rather than ./c-exp.c some makes would
2822 # sometimes re-write it into $(srcdir)/c-exp.c. Remove bogus
2823 # decls for malloc/realloc/free which conflict with everything else.
2824 # Strictly speaking c-exp.c should therefore depend on
2825 # Makefile.in, but that was a pretty big annoyance.
2829 $(SHELL) $(YLWRAP) $< y.tab.c $@ -- $(YACC) $(YFLAGS) && mv $@ $@.tmp \
2830 || (rm -f $@; false)
2831 sed -e '/extern.*malloc/d' \
2832 -e '/extern.*realloc/d' \
2833 -e '/extern.*free/d' \
2834 -e '/include.*malloc.h/d' \
2835 -e 's/\([^x]\)malloc/\1xmalloc/g' \
2836 -e 's/\([^x]\)realloc/\1xrealloc/g' \
2837 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
2838 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
2839 -e '/^#line.*y.tab.c/d' \
2840 -e 's/YY_NULL/YY_NULLPTR/g' \
2844 if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \
2845 $(FLEX) -o$@ $< && \
2847 sed -e '/extern.*malloc/d' \
2848 -e '/extern.*realloc/d' \
2849 -e '/extern.*free/d' \
2850 -e '/include.*malloc.h/d' \
2851 -e 's/\([^x]\)malloc/\1xmalloc/g' \
2852 -e 's/\([^x]\)realloc/\1xrealloc/g' \
2853 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
2854 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
2855 -e 's/yy_flex_xrealloc/yyxrealloc/g' \
2859 elif [ -f $@ ]; then \
2860 echo "Warning: $*.c older than $*.l and flex not available."; \
2862 echo "$@ missing and flex not available."; \
2866 .PRECIOUS: ada-lex.c
2870 xml-builtin.c: stamp-xml; @true
2871 stamp-xml: $(srcdir)/features/feature_to_c.sh Makefile $(XMLFILES)
2872 rm -f xml-builtin.tmp
2874 $(SHELL) $(srcdir)/features/feature_to_c.sh \
2875 xml-builtin.tmp $(XMLFILES)
2876 $(SHELL) $(srcdir)/../move-if-change xml-builtin.tmp xml-builtin.c
2877 echo stamp > stamp-xml
2879 .PRECIOUS: xml-builtin.c
2882 # GDBTK sub-directory
2885 all-gdbtk: insight$(EXEEXT)
2888 transformed_name=`t='$(program_transform_name)'; \
2889 echo insight | sed -e $$t` ; \
2890 if test "x$$transformed_name" = x; then \
2891 transformed_name=insight ; \
2895 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
2896 $(INSTALL_PROGRAM) insight$(EXEEXT) \
2897 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2898 $(SHELL) $(srcdir)/../mkinstalldirs \
2899 $(DESTDIR)$(GDBTK_LIBRARY) ; \
2900 $(SHELL) $(srcdir)/../mkinstalldirs \
2901 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION) ; \
2902 $(INSTALL_DATA) $(srcdir)/gdbtk/plugins/plugins.tcl \
2903 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION)/plugins.tcl ; \
2904 $(SHELL) $(srcdir)/../mkinstalldirs \
2905 $(DESTDIR)$(GDBTK_LIBRARY)/images \
2906 $(DESTDIR)$(GDBTK_LIBRARY)/images2 ; \
2907 $(SHELL) $(srcdir)/../mkinstalldirs \
2908 $(DESTDIR)$(GDBTK_LIBRARY)/help \
2909 $(DESTDIR)$(GDBTK_LIBRARY)/help/images \
2910 $(DESTDIR)$(GDBTK_LIBRARY)/help/trace ; \
2911 cd $(srcdir)/gdbtk/library ; \
2912 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; \
2914 $(INSTALL_DATA) $$i $(DESTDIR)$(GDBTK_LIBRARY)/$$i ; \
2918 transformed_name=`t='$(program_transform_name)'; \
2919 echo insight | sed -e $$t` ; \
2920 if test "x$$transformed_name" = x; then \
2921 transformed_name=insight ; \
2925 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2926 rm -rf $(DESTDIR)$(GDBTK_LIBRARY)
2929 rm -f insight$(EXEEXT)
2931 # Removing the old gdb first works better if it is running, at least on SunOS.
2932 insight$(EXEEXT): gdbtk-main.o libgdb.a $(ADD_DEPS) \
2933 $(CDEPS) $(TDEPLIBS)
2934 rm -f insight$(EXEEXT)
2935 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
2936 -o insight$(EXEEXT) gdbtk-main.o libgdb.a \
2937 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
2939 gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
2940 $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
2942 all_gdbtk_cflags = $(IDE_CFLAGS) $(ITCL_CFLAGS) \
2943 $(ITK_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
2945 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" \
2946 -DSRC_DIR=\"$(GDBTK_SRC_DIR)\"
2949 # Dependency tracking.
2952 ifeq ($(DEPMODE),depmode=gcc3)
2953 # Note that we put the dependencies into a .Tpo file, then move them
2954 # into place if the compile succeeds. We need this because gcc does
2955 # not atomically write the dependency output file.
2956 override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
2957 -MF $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo
2958 override POSTCOMPILE = @mv $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo \
2959 $(@D)/$(DEPDIR)/$(basename $(@F)).Po
2961 override COMPILE.pre = source='$<' object='$@' libtool=no \
2962 DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) \
2963 $(CXX) -x c++ $(CXX_DIALECT)
2964 # depcomp handles atomicity for us, so we don't need a postcompile
2966 override POSTCOMPILE =
2969 # A list of all the objects we might care about in this build, for
2970 # dependency tracking.
2971 all_object_files = gdb.o $(LIBGDB_OBS) gdbtk-main.o \
2972 test-cp-name-parser.o
2974 # Ensure that generated files are created early. Use order-only
2975 # dependencies if available. They require GNU make 3.80 or newer,
2976 # and the .VARIABLES variable was introduced at the same time.
2978 $(all_object_files): | $(generated_files)
2980 $(all_object_files) : $(generated_files)
2984 -include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
2986 # Disable implicit make rules.
2987 include $(srcdir)/disable-implicit-rules.mk
2989 ### end of the gdb Makefile.in.