1 # Copyright (C) 2010 Free Software Foundation, Inc.
3 # Makefile for building a staged copy of the data-directory.
4 # This file is part of GDB.
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
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 SYSCALLS_SRCDIR = $(srcdir)/../syscalls
21 PYTHON_SRCDIR = $(srcdir)/../python/lib
22 VPATH = $(srcdir):$(SYSCALLS_SRCDIR):$(PYTHON_SRCDIR)
24 top_srcdir = @top_srcdir@
25 top_builddir = @top_builddir@
28 exec_prefix = @exec_prefix@
30 datarootdir = @datarootdir@
38 INSTALL_DATA = @INSTALL_DATA@
39 INSTALL_DIR = $(SHELL) $(srcdir)/../../mkinstalldirs
41 GDB_DATADIR = @GDB_DATADIR@
43 SYSCALLS_DIR = syscalls
44 SYSCALLS_INSTALL_DIR = $(DESTDIR)/$(GDB_DATADIR)/$(SYSCALLS_DIR)
47 ppc-linux.xml ppc64-linux.xml \
48 i386-linux.xml amd64-linux.xml \
49 sparc-linux.xml sparc64-linux.xml
52 PYTHON_INSTALL_DIR = $(DESTDIR)/$(GDB_DATADIR)/$(PYTHON_DIR)
57 gdb/command/__init__.py \
58 gdb/command/pretty_printers.py
62 "exec_prefix=$(exec_prefix)" \
63 "infodir=$(infodir)" \
64 "datarootdir=$(datarootdir)" \
66 "htmldir=$(htmldir)" \
70 "datadir=$(datadir)" \
71 "includedir=$(includedir)" \
72 "against=$(against)" \
73 "DESTDIR=$(DESTDIR)" \
75 "AR_FLAGS=$(AR_FLAGS)" \
79 "CXXFLAGS=$(CXXFLAGS)" \
80 "DLLTOOL=$(DLLTOOL)" \
81 "LDFLAGS=$(LDFLAGS)" \
83 "MAKEINFO=$(MAKEINFO)" \
84 "MAKEHTML=$(MAKEHTML)" \
85 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
86 "INSTALL=$(INSTALL)" \
87 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
88 "INSTALL_DATA=$(INSTALL_DATA)" \
89 "RUNTEST=$(RUNTEST)" \
90 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
93 all: stamp-syscalls stamp-python
95 # For portability's sake, we need to handle systems that don't have
97 stamp-syscalls: Makefile $(SYSCALLS_FILES)
98 rm -rf ./$(SYSCALLS_DIR)
99 mkdir ./$(SYSCALLS_DIR)
100 files='$(SYSCALLS_FILES)' ; \
101 for file in $$files ; do \
102 f=$(SYSCALLS_SRCDIR)/$$file ; \
103 if test -f $$f ; then \
104 $(INSTALL_DATA) $$f ./$(SYSCALLS_DIR) ; \
109 .PHONY: clean-syscalls
111 rm -rf $(SYSCALLS_DIR)
114 # This target is responsible for properly installing the syscalls'
115 # XML files in the system.
116 .PHONY: install-syscalls
118 $(INSTALL_DIR) $(SYSCALLS_INSTALL_DIR)
119 files='$(SYSCALLS_FILES)' ; \
120 for file in $$files; do \
121 f=$(SYSCALLS_SRCDIR)/$$file ; \
122 if test -f $$f ; then \
123 $(INSTALL_DATA) $$f $(SYSCALLS_INSTALL_DIR) ; \
127 .PHONY: uninstall-syscalls
129 files='$(SYSCALLS_FILES)' ; \
130 for file in $$files ; do \
131 slashdir=`echo "/$$file" | sed 's,/[^/]*$$,,'` ; \
132 rm -f $(SYSCALLS_INSTALL_DIR)/$$file ; \
133 while test "x$$file" != "x$$slashdir" ; do \
134 rmdir 2>/dev/null "$(SYSCALLS_INSTALL_DIR)$$slashdir" ; \
135 file="$$slashdir" ; \
136 slashdir=`echo "$$file" | sed 's,/[^/]*$$,,'` ; \
140 stamp-python: Makefile $(PYTHON_FILES)
141 rm -rf ./$(PYTHON_DIR)
142 files='$(PYTHON_FILES)' ; \
143 for file in $$files ; do \
144 dir=`echo "$$file" | sed 's,/[^/]*$$,,'` ; \
145 $(INSTALL_DIR) ./$(PYTHON_DIR)/$$dir ; \
146 $(INSTALL_DATA) $(PYTHON_SRCDIR)/$$file ./$(PYTHON_DIR)/$$dir ; \
155 .PHONY: install-python
157 files='$(PYTHON_FILES)' ; \
158 for file in $$files ; do \
159 dir=`echo "$$file" | sed 's,/[^/]*$$,,'` ; \
160 $(INSTALL_DIR) $(PYTHON_INSTALL_DIR)/$$dir ; \
161 $(INSTALL_DATA) ./$(PYTHON_DIR)/$$file $(PYTHON_INSTALL_DIR)/$$dir ; \
164 .PHONY: uninstall-python
166 files='$(PYTHON_FILES)' ; \
167 for file in $$files ; do \
168 slashdir=`echo "/$$file" | sed 's,/[^/]*$$,,'` ; \
169 rm -f $(PYTHON_INSTALL_DIR)/$$file ; \
170 while test "x$$file" != "x$$slashdir" ; do \
171 rmdir 2>/dev/null "$(PYTHON_INSTALL_DIR)$$slashdir" ; \
172 file="$$slashdir" ; \
173 slashdir=`echo "$$file" | sed 's,/[^/]*$$,,'` ; \
177 # Traditionally "install" depends on "all". But it may be useful
178 # not to; for example, if the user has made some trivial change to a
179 # source file and doesn't care about rebuilding or just wants to save the
180 # time it takes for make to check that all is up to date.
181 # install-only is intended to address that need.
184 @$(MAKE) $(FLAGS_TO_PASS) install-only
187 install-only: install-syscalls install-python
190 uninstall: uninstall-syscalls uninstall-python
193 clean: clean-syscalls clean-python
195 .PHONY: maintainer-clean realclean distclean
196 maintainer-clean realclean distclean: clean
199 .PHONY: check installcheck info dvi pdf html
200 .PHONY: install-info install-pdf install-html clean-info
203 install-info install-pdf install-html:
206 # GNU Make has an annoying habit of putting *all* the Makefile variables
207 # into the environment, unless you include this target as a circumvention.
208 # Rumor is that this will be fixed (and this target can be removed)
212 # GNU Make 3.63 has a different problem: it keeps tacking command line
213 # overrides onto the definition of $(MAKE). This variable setting
217 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
218 cd $(top_builddir) && $(MAKE) data-directory/Makefile