| OLD | NEW |
| 1 # Copyright (C) 2010-2012 Free Software Foundation, Inc. | 1 # Copyright (C) 2010-2012 Free Software Foundation, Inc. |
| 2 | 2 |
| 3 # Makefile for building a staged copy of the data-directory. | 3 # Makefile for building a staged copy of the data-directory. |
| 4 # This file is part of GDB. | 4 # This file is part of GDB. |
| 5 | 5 |
| 6 # This program is free software; you can redistribute it and/or modify | 6 # This program is free software; you can redistribute it and/or modify |
| 7 # it under the terms of the GNU General Public License as published by | 7 # it under the terms of the GNU General Public License as published by |
| 8 # the Free Software Foundation; either version 3 of the License, or | 8 # the Free Software Foundation; either version 3 of the License, or |
| 9 # (at your option) any later version. | 9 # (at your option) any later version. |
| 10 # | 10 # |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 51 |
| 52 PYTHON_DIR = python | 52 PYTHON_DIR = python |
| 53 PYTHON_INSTALL_DIR = $(DESTDIR)$(GDB_DATADIR)/$(PYTHON_DIR) | 53 PYTHON_INSTALL_DIR = $(DESTDIR)$(GDB_DATADIR)/$(PYTHON_DIR) |
| 54 PYTHON_FILES = \ | 54 PYTHON_FILES = \ |
| 55 gdb/__init__.py \ | 55 gdb/__init__.py \ |
| 56 gdb/types.py \ | 56 gdb/types.py \ |
| 57 gdb/printing.py \ | 57 gdb/printing.py \ |
| 58 gdb/prompt.py \ | 58 gdb/prompt.py \ |
| 59 gdb/command/__init__.py \ | 59 gdb/command/__init__.py \ |
| 60 gdb/command/pretty_printers.py \ | 60 gdb/command/pretty_printers.py \ |
| 61 » gdb/command/prompt.py | 61 » gdb/command/prompt.py \ |
| 62 » gdb/command/explore.py |
| 62 | 63 |
| 63 FLAGS_TO_PASS = \ | 64 FLAGS_TO_PASS = \ |
| 64 "prefix=$(prefix)" \ | 65 "prefix=$(prefix)" \ |
| 65 "exec_prefix=$(exec_prefix)" \ | 66 "exec_prefix=$(exec_prefix)" \ |
| 66 "infodir=$(infodir)" \ | 67 "infodir=$(infodir)" \ |
| 67 "datarootdir=$(datarootdir)" \ | 68 "datarootdir=$(datarootdir)" \ |
| 68 "docdir=$(docdir)" \ | 69 "docdir=$(docdir)" \ |
| 69 "htmldir=$(htmldir)" \ | 70 "htmldir=$(htmldir)" \ |
| 70 "pdfdir=$(pdfdir)" \ | 71 "pdfdir=$(pdfdir)" \ |
| 71 "libdir=$(libdir)" \ | 72 "libdir=$(libdir)" \ |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 # in GNU Make 4.0. | 213 # in GNU Make 4.0. |
| 213 .NOEXPORT: | 214 .NOEXPORT: |
| 214 | 215 |
| 215 # GNU Make 3.63 has a different problem: it keeps tacking command line | 216 # GNU Make 3.63 has a different problem: it keeps tacking command line |
| 216 # overrides onto the definition of $(MAKE). This variable setting | 217 # overrides onto the definition of $(MAKE). This variable setting |
| 217 # will remove them. | 218 # will remove them. |
| 218 MAKEOVERRIDES= | 219 MAKEOVERRIDES= |
| 219 | 220 |
| 220 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status | 221 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |
| 221 cd $(top_builddir) && $(MAKE) data-directory/Makefile | 222 cd $(top_builddir) && $(MAKE) data-directory/Makefile |
| OLD | NEW |