]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/data-directory/Makefile.in
Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
[thirdparty/binutils-gdb.git] / gdb / data-directory / Makefile.in
1 # Copyright (C) 2010-2012 Free Software Foundation, Inc.
2
3 # Makefile for building a staged copy of the data-directory.
4 # This file is part of GDB.
5
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.
10 #
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.
15 #
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/>.
18
19 srcdir = @srcdir@
20 SYSCALLS_SRCDIR = $(srcdir)/../syscalls
21 PYTHON_SRCDIR = $(srcdir)/../python/lib
22 VPATH = $(srcdir):$(SYSCALLS_SRCDIR):$(PYTHON_SRCDIR)
23
24 top_srcdir = @top_srcdir@
25 top_builddir = @top_builddir@
26
27 prefix = @prefix@
28 exec_prefix = @exec_prefix@
29
30 datarootdir = @datarootdir@
31 datadir = @datadir@
32
33 SHELL = @SHELL@
34
35 LN_S = @LN_S@
36
37 INSTALL = @INSTALL@
38 INSTALL_DATA = @INSTALL_DATA@
39 INSTALL_DIR = $(SHELL) $(srcdir)/../../mkinstalldirs
40
41 GDB_DATADIR = @GDB_DATADIR@
42
43 SYSCALLS_DIR = syscalls
44 SYSCALLS_INSTALL_DIR = $(DESTDIR)$(GDB_DATADIR)/$(SYSCALLS_DIR)
45 SYSCALLS_FILES = \
46 gdb-syscalls.dtd \
47 ppc-linux.xml ppc64-linux.xml \
48 i386-linux.xml amd64-linux.xml \
49 sparc-linux.xml sparc64-linux.xml \
50 mips-o32-linux.xml mips-n32-linux.xml mips-n64-linux.xml
51
52 PYTHON_DIR = python
53 PYTHON_INSTALL_DIR = $(DESTDIR)$(GDB_DATADIR)/$(PYTHON_DIR)
54 PYTHON_FILES = \
55 gdb/__init__.py \
56 gdb/types.py \
57 gdb/printing.py \
58 gdb/prompt.py \
59 gdb/command/__init__.py \
60 gdb/command/pretty_printers.py \
61 gdb/command/prompt.py \
62 gdb/command/explore.py \
63 gdb/function/__init__.py \
64 gdb/function/strfns.py
65
66 FLAGS_TO_PASS = \
67 "prefix=$(prefix)" \
68 "exec_prefix=$(exec_prefix)" \
69 "infodir=$(infodir)" \
70 "datarootdir=$(datarootdir)" \
71 "docdir=$(docdir)" \
72 "htmldir=$(htmldir)" \
73 "pdfdir=$(pdfdir)" \
74 "libdir=$(libdir)" \
75 "mandir=$(mandir)" \
76 "datadir=$(datadir)" \
77 "includedir=$(includedir)" \
78 "against=$(against)" \
79 "DESTDIR=$(DESTDIR)" \
80 "AR=$(AR)" \
81 "AR_FLAGS=$(AR_FLAGS)" \
82 "CC=$(CC)" \
83 "CFLAGS=$(CFLAGS)" \
84 "CXX=$(CXX)" \
85 "CXXFLAGS=$(CXXFLAGS)" \
86 "DLLTOOL=$(DLLTOOL)" \
87 "LDFLAGS=$(LDFLAGS)" \
88 "RANLIB=$(RANLIB)" \
89 "MAKEINFO=$(MAKEINFO)" \
90 "MAKEHTML=$(MAKEHTML)" \
91 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
92 "INSTALL=$(INSTALL)" \
93 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
94 "INSTALL_DATA=$(INSTALL_DATA)" \
95 "RUNTEST=$(RUNTEST)" \
96 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
97
98 .PHONY: all
99 all: stamp-syscalls stamp-python
100
101 # For portability's sake, we need to handle systems that don't have
102 # symbolic links.
103 stamp-syscalls: Makefile $(SYSCALLS_FILES)
104 rm -rf ./$(SYSCALLS_DIR)
105 mkdir ./$(SYSCALLS_DIR)
106 files='$(SYSCALLS_FILES)' ; \
107 for file in $$files ; do \
108 f=$(SYSCALLS_SRCDIR)/$$file ; \
109 if test -f $$f ; then \
110 $(INSTALL_DATA) $$f ./$(SYSCALLS_DIR) ; \
111 fi ; \
112 done
113 touch $@
114
115 .PHONY: clean-syscalls
116 clean-syscalls:
117 rm -rf $(SYSCALLS_DIR)
118 rm -f stamp-syscalls
119
120 # This target is responsible for properly installing the syscalls'
121 # XML files in the system.
122 .PHONY: install-syscalls
123 install-syscalls:
124 $(INSTALL_DIR) $(SYSCALLS_INSTALL_DIR)
125 files='$(SYSCALLS_FILES)' ; \
126 for file in $$files; do \
127 f=$(SYSCALLS_SRCDIR)/$$file ; \
128 if test -f $$f ; then \
129 $(INSTALL_DATA) $$f $(SYSCALLS_INSTALL_DIR) ; \
130 fi ; \
131 done
132
133 .PHONY: uninstall-syscalls
134 uninstall-syscalls:
135 files='$(SYSCALLS_FILES)' ; \
136 for file in $$files ; do \
137 slashdir=`echo "/$$file" | sed 's,/[^/]*$$,,'` ; \
138 rm -f $(SYSCALLS_INSTALL_DIR)/$$file ; \
139 while test "x$$file" != "x$$slashdir" ; do \
140 rmdir 2>/dev/null "$(SYSCALLS_INSTALL_DIR)$$slashdir" ; \
141 file="$$slashdir" ; \
142 slashdir=`echo "$$file" | sed 's,/[^/]*$$,,'` ; \
143 done \
144 done
145
146 stamp-python: Makefile $(PYTHON_FILES)
147 rm -rf ./$(PYTHON_DIR)
148 files='$(PYTHON_FILES)' ; \
149 for file in $$files ; do \
150 dir=`echo "$$file" | sed 's,/[^/]*$$,,'` ; \
151 $(INSTALL_DIR) ./$(PYTHON_DIR)/$$dir ; \
152 $(INSTALL_DATA) $(PYTHON_SRCDIR)/$$file ./$(PYTHON_DIR)/$$dir ; \
153 done
154 touch $@
155
156 .PHONY: clean-python
157 clean-python:
158 rm -rf $(PYTHON_DIR)
159 rm -f stamp-python
160
161 .PHONY: install-python
162 install-python:
163 files='$(PYTHON_FILES)' ; \
164 for file in $$files ; do \
165 dir=`echo "$$file" | sed 's,/[^/]*$$,,'` ; \
166 $(INSTALL_DIR) $(PYTHON_INSTALL_DIR)/$$dir ; \
167 $(INSTALL_DATA) ./$(PYTHON_DIR)/$$file $(PYTHON_INSTALL_DIR)/$$dir ; \
168 done
169
170 .PHONY: uninstall-python
171 uninstall-python:
172 files='$(PYTHON_FILES)' ; \
173 for file in $$files ; do \
174 slashdir=`echo "/$$file" | sed 's,/[^/]*$$,,'` ; \
175 rm -f $(PYTHON_INSTALL_DIR)/$$file ; \
176 while test "x$$file" != "x$$slashdir" ; do \
177 rmdir 2>/dev/null "$(PYTHON_INSTALL_DIR)$$slashdir" ; \
178 file="$$slashdir" ; \
179 slashdir=`echo "$$file" | sed 's,/[^/]*$$,,'` ; \
180 done \
181 done
182
183 # Traditionally "install" depends on "all". But it may be useful
184 # not to; for example, if the user has made some trivial change to a
185 # source file and doesn't care about rebuilding or just wants to save the
186 # time it takes for make to check that all is up to date.
187 # install-only is intended to address that need.
188 .PHONY: install
189 install: all
190 @$(MAKE) $(FLAGS_TO_PASS) install-only
191
192 .PHONY: install-only
193 install-only: install-syscalls install-python
194
195 .PHONY: uninstall
196 uninstall: uninstall-syscalls uninstall-python
197
198 .PHONY: clean
199 clean: clean-syscalls clean-python
200
201 .PHONY: maintainer-clean realclean distclean
202 maintainer-clean realclean distclean: clean
203 rm -f Makefile
204
205 .PHONY: check installcheck info dvi pdf html
206 .PHONY: install-info install-pdf install-html clean-info
207 check installcheck:
208 info dvi pdf html:
209 install-info install-pdf install-html:
210 clean-info:
211
212 # GNU Make has an annoying habit of putting *all* the Makefile variables
213 # into the environment, unless you include this target as a circumvention.
214 # Rumor is that this will be fixed (and this target can be removed)
215 # in GNU Make 4.0.
216 .NOEXPORT:
217
218 # GNU Make 3.63 has a different problem: it keeps tacking command line
219 # overrides onto the definition of $(MAKE). This variable setting
220 # will remove them.
221 MAKEOVERRIDES=
222
223 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
224 cd $(top_builddir) && $(MAKE) data-directory/Makefile